aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453)gentoo-3.7.12_p2Sebastian Pipping2022-03-052-8/+15
* bpo-45433: Do not link libpython against libcryptgentoo-3.7.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-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pyd...gentoo-3.7.12Miss Islington (bot)2021-09-052-6/+9
* bpo-43998: Default to TLS 1.2 and increase cipher suite security (GH-25778)Christian Heimes2021-09-055-8/+73
* bpo-43650: Fix MemoryError on zip.read in shutil._unpack_zipfile for large fi...Miss Islington (bot)2021-09-052-10/+8
* bpo-36384: Leading zeros in IPv4 addresses are no longer tolerated (GH-25099)...Miss Islington (bot)2021-09-055-15/+51
* ssl: Hard-disable SSLv3 to avoid automagic depsMichał Górny2021-09-051-0/+4
* Skip RDS socket tests that hang frequentlyMichał Górny2021-09-051-0/+1
* test.support.unlink: ignore PermissionErrorMike Gilbert2021-09-051-1/+1
* Call OPENSSL_init_crypto for openssl >= 1.1.0Mike Gilbert2021-09-051-0/+2
* Install shared libs in LIBDESTMike Gilbert2021-09-051-3/+2
* distutils: make -OO enable both opt-1 and opt-2 optimizationMichał Górny2021-09-052-10/+10
* Disable nisMike Gilbert2021-09-051-1/+1
* h2py: use binary I/O to avoid encoding issuesMike Gilbert2021-09-051-33/+35
* Improve distutils C++ supportMike Gilbert2021-09-056-52/+80
* setup.py: exit with non-zero status on failureMike Gilbert2021-09-051-0/+7
* Override libdirMike Gilbert2021-09-051-14/+10
* Disable modules and SSLMike Gilbert2021-09-051-3/+14
* Install libpythonX.Y.a in /usr/lib instead of /usr/lib/pythonX.Y/configMike Gilbert2021-09-054-13/+4
* 3.7.12v3.7.12Ned Deily2021-09-037-12/+35
* [3.7] bpo-44394: Update libexpat copy to 2.4.1 (GH-26945) (GH-28042)Łukasz Langa2021-08-3122-189/+1387
* [3.7] bpo-43124: Fix smtplib multiple CRLF injection (GH-25987) (GH-28037)Miss Islington (bot)2021-08-303-3/+65
* bpo-45001: Make email date parsing more robust against malformed input (GH-27...Miss Islington (bot)2021-08-303-0/+6
* Fix Sphinx directive typo in 3.7.11 changelog.Ned Deily2021-07-051-1/+1
* Post release updatesNed Deily2021-06-282-3/+3
* 3.7.11v3.7.11Ned Deily2021-06-2811-32/+91
* bpo-44022: Improve the regression test. (GH-26503) (GH-26507)Miss Islington (bot)2021-06-031-1/+6
* [3.7] bpo-43882 - Mention urllib.parse changes in Whats New section for 3.7.1...Senthil Kumaran2021-05-201-0/+10
* [3.7] bpo-40297: Fix test_socket.CANTest.testSendFrame (GH-25960)Zachary Ware2021-05-071-2/+4
* bpo-44022: Fix http client infinite line reading (DoS) after a HTTP 100 Conti...Miss Islington (bot)2021-05-063-18/+32
* [3.7] bpo-43882 - urllib.parse should sanitize urls containing ASCII newline ...Miss Islington (bot)2021-05-064-0/+77
* bpo-43075: Fix ReDoS in urllib AbstractBasicAuthHandler (GH-24391) (#25249)Miss Islington (bot)2021-05-042-1/+2
* bpo-41561: Fix testing with OpenSSL 1.0.2 (GH-25355) (GH-25858)Miss Islington (bot)2021-05-031-1/+4
* [3.7] bpo-41561: Add workaround for Ubuntu's custom security level (GH-24915)...Christian Heimes2021-05-033-1/+31
* [3.7] bpo-43660: Fix crash when displaying exceptions with custom values for ...Pablo Galindo2021-03-303-0/+20
* bpo-42988: Remove the pydoc getfile feature (GH-25015) (#25066)Miss Islington (bot)2021-03-293-24/+4
* [3.7] bpo-43285 Make ftplib not trust the PASV response. (GH-24838) (GH-24881...Miss Islington (bot)2021-03-164-2/+51
* Pin test runner to Ubuntu 18 to un-break CI (GH-24715) (GH-24716)Miss Islington (bot)2021-03-031-1/+1
* [3.7] bpo-43293: Doc: move note about GIL to top of threading module (GH-2462...Guanzhong Chen2021-02-261-12/+12
* Post release updates3.7Ned Deily2021-02-162-3/+3
* 3.7.10v3.7.10Ned Deily2021-02-1514-23/+103
* Add a warning block around the get_referrers() documentation (GH-24511) (GH-2...Miss Islington (bot)2021-02-151-4/+5
* [3.7] bpo-42967: only use '&' as a query string separator (GH-24297) (GH-24531)Senthil Kumaran2021-02-159-46/+152
* [3.7] closes bpo-42938: Replace snprintf with Python unicode formatting in ct...Benjamin Peterson2021-01-183-34/+66
* Bring Python into the new year. (GH-24036) (GH-24052)Miss Islington (bot)2021-01-019-10/+10
* bpo-42794: Update test_nntplib to use offical group name for testing (GH-2403...Miss Islington (bot)2021-01-012-3/+9
* bpo-17140: Document multiprocessing's ThreadPool (GH-23812) (GH-23836)Miss Islington (bot)2020-12-182-0/+41
* [3.7] Bumps [actions/cache](https://github.com/actions/cache) from v1 to v2.1...Benjamin Peterson2020-12-012-2/+2
* bpo-40791: Make compare_digest more constant-time. (GH-23438)Miss Islington (bot)2020-11-222-1/+2