aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pyd...gentoo-3.7.11_p1Miss Islington (bot)2021-08-302-6/+9
* [3.7] bpo-43124: Fix smtplib multiple CRLF injection (GH-25987) (GH-28037)Miss Islington (bot)2021-08-303-3/+65
* bpo-43998: Default to TLS 1.2 and increase cipher suite security (GH-25778)gentoo-3.7.11Christian Heimes2021-06-295-8/+73
* bpo-43650: Fix MemoryError on zip.read in shutil._unpack_zipfile for large fi...Miss Islington (bot)2021-06-292-10/+8
* bpo-36384: Leading zeros in IPv4 addresses are no longer tolerated (GH-25099)...Miss Islington (bot)2021-06-295-15/+51
* ssl: Hard-disable SSLv3 to avoid automagic depsMichał Górny2021-06-291-0/+4
* Skip RDS socket tests that hang frequentlyMichał Górny2021-06-291-0/+1
* test.support.unlink: ignore PermissionErrorMike Gilbert2021-06-291-1/+1
* Call OPENSSL_init_crypto for openssl >= 1.1.0Mike Gilbert2021-06-291-0/+2
* Install shared libs in LIBDESTMike Gilbert2021-06-291-3/+2
* distutils: make -OO enable both opt-1 and opt-2 optimizationMichał Górny2021-06-292-10/+10
* Disable nisMike Gilbert2021-06-291-1/+1
* h2py: use binary I/O to avoid encoding issuesMike Gilbert2021-06-291-33/+35
* Improve distutils C++ supportMike Gilbert2021-06-296-52/+80
* setup.py: exit with non-zero status on failureMike Gilbert2021-06-291-0/+7
* Override libdirMike Gilbert2021-06-291-14/+10
* Disable modules and SSLMike Gilbert2021-06-291-3/+14
* Install libpythonX.Y.a in /usr/lib instead of /usr/lib/pythonX.Y/configMike Gilbert2021-06-294-13/+4
* 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
* [3.7] bpo-42336: Improve PCbuild batch files (GH-23325) (GH-23373)Steve Dower2020-11-187-14/+47
* [3.7] bpo-42103: Improve validation of Plist files. (GH-22882) (#23117)Serhiy Storchaka2020-11-104-67/+367
* [3.7] Remove 3.5 from Doc version switcher in master. (GH-22886) (#22890)larryhastings2020-10-222-2/+0
* bpo-41944: No longer call eval() on content received via HTTP in the CJK code...Miss Skeleton (bot)2020-10-192-14/+9
* bpo-42051: Reject XML entity declarations in plist files (#22760) (GH-22801)Ned Deily2020-10-193-0/+28
* [3.7] bpo-41976: Fix the fallback to gcc of ctypes.util.find_library when usi...Pablo Galindo2020-10-083-8/+39
* Post release updatesNed Deily2020-08-172-3/+3
* 3.7.9v3.7.9Ned Deily2020-08-1513-19/+95