aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453)gentoo-3.8.12_p2Sebastian Pipping2022-03-052-8/+15
* bpo-45433: Do not link libpython against libcryptgentoo-3.8.12_p1Mike Gilbert2021-10-111-0/+3
* closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH...Geoffrey Thomas2021-10-113-13/+4
* bpo-43998: Default to TLS 1.2 and increase cipher suite security (GH-25778)gentoo-3.8.12Christian Heimes2021-08-304-8/+72
* bpo-43650: Fix MemoryError on zip.read in shutil._unpack_zipfile for large fi...Miss Islington (bot)2021-08-302-10/+8
* ssl: Hard-disable SSLv3 to avoid automagic depsMichał Górny2021-08-301-0/+4
* Skip RDS socket tests that hang frequentlyMichał Górny2021-08-301-0/+1
* Blacklist test_pickletools from __all__ test as it imports numpyMichał Górny2021-08-301-0/+2
* test.support.unlink: ignore PermissionErrorMike Gilbert2021-08-301-1/+1
* Call OPENSSL_init_crypto for openssl >= 1.1.0Mike Gilbert2021-08-301-0/+2
* Install shared libs in LIBDESTMike Gilbert2021-08-301-3/+2
* distutils: make -OO enable both opt-1 and opt-2 optimizationMichał Górny2021-08-302-10/+10
* Disable nisMike Gilbert2021-08-301-1/+0
* h2py: use binary I/O to avoid encoding issuesMike Gilbert2021-08-301-33/+34
* Improve distutils C++ supportMike Gilbert2021-08-306-52/+80
* setup.py: exit with non-zero status on failureMike Gilbert2021-08-301-0/+6
* Override libdirMike Gilbert2021-08-301-14/+10
* Disable modules and SSLMike Gilbert2021-08-301-2/+13
* Install libpythonX.Y.a in /usr/lib instead of /usr/lib/pythonX.Y/configMike Gilbert2021-08-304-14/+4
* Python 3.8.12v3.8.12Łukasz Langa2021-08-3016-38/+135
* [3.8] bpo-45007: Update multissl to openssl 1.1.1l as well (GH-28044) (GH-28063)Christian Heimes2021-08-301-2/+2
* bpo-45007: Update macOS installer builds to use OpenSSL 1.1.1l (GH-28051) (GH...Miss Islington (bot)2021-08-303-3/+64
* bpo-44689: ctypes.util.find_library() now finds macOS 11+ system libraries wh...Miss Islington (bot)2021-08-302-3/+31
* [3.8] bpo-45007: Update to OpenSSL 1.1.1l in Windows build and CI (GH-28009) ...Łukasz Langa2021-08-296-22/+23
* [3.8] bpo-43124: Fix smtplib multiple CRLF injection (GH-25987) (GH-28036)Miss Islington (bot)2021-08-293-3/+65
* bpo-44394: Update libexpat copy to 2.4.1 (GH-26945) (GH-28033)Miss Islington (bot)2021-08-2922-190/+1388
* bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pyd...Miss Islington (bot)2021-08-292-6/+9
* Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-...Miss Islington (bot)2021-08-271-1/+1
* bpo-44997: macOS does not support loadable SQLite extensions (GH-27979) (GH-2...Miss Islington (bot)2021-08-271-0/+2
* bpo-45001: Make email date parsing more robust against malformed input (GH-27...Miss Islington (bot)2021-08-263-0/+6
* [3.8] bpo-36384: [doc] Correct typos in CVE-2021-29921 fix description (GH-27...Łukasz Langa2021-08-192-2/+2
* [3.8] bpo-36384: Leading zeros in IPv4 addresses are no longer tolerated (GH-...achraf-mer2021-08-185-6/+57
* bpo-33930: Fix typo in the test name. (GH-27735)Miss Islington (bot)2021-08-111-1/+1
* [3.8] bpo-33930: Fix segfault with deep recursion when cleaning method object...Łukasz Langa2021-08-113-1/+22
* bpo-44854: Add .editorconfig file to help enforce `make patchcheck` (GH-27638...Miss Islington (bot)2021-08-101-0/+12
* bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27692)Irit Katriel2021-08-102-2/+3
* bpo-44856: Possible reference leak in error paths of update_bases() and __bui...Miss Islington (bot)2021-08-072-22/+14
* Spell out 's.pop() or s.pop(i)' (GH-27398) (GH-27414)Miss Islington (bot)2021-07-281-1/+1
* bpo-30511: Add note on thread safety to shutil.make_archive() (GH-26933) (#27...Miss Islington (bot)2021-07-212-0/+6
* bpo-44022: Improve the regression test. (GH-26503) (#26506)Miss Islington (bot)2021-07-121-1/+6
* Post 3.8.11Łukasz Langa2021-06-281-1/+1
* Python 3.8.11v3.8.11Łukasz Langa2021-06-289-17/+67
* [3.8] bpo-43882 - Mention urllib.parse changes in Whats new section. (#26277)Senthil Kumaran2021-06-281-0/+12
* bpo-44229: Ignore spurious EPROTOTYPE on macOS in test_ssl (GH-26893) (GH-26895)Miss Islington (bot)2021-06-241-3/+8
* bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suit...Miss Islington (bot)2021-06-121-0/+2
* [3.8] bpo-44061: Fix pkgutil.iter_modules regression when passed a pathlib.Pa...Łukasz Langa2021-05-123-0/+49
* bpo-44070: No longer eagerly makes import filenames absolute, except for exte...Steve Dower2021-05-124-1843/+1845
* bpo-40297: Fix test_socket.CANTest.testSendFrame (GH-19548) (#25957)Miss Islington (bot)2021-05-071-2/+1
* bpo-44022: Fix http client infinite line reading (DoS) after a HTTP 100 Conti...Miss Islington (bot)2021-05-063-18/+32
* [3.8] bpo-43882 - urllib.parse should sanitize urls containing ASCII newline ...Miss Islington (bot)2021-05-054-0/+77