summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 3.7.4 finalv3.7.4Ned Deily2019-07-085-10/+24
* bpo-37149: Replace dead link for online Tkinter reference (GH-14616)Miss Islington (bot)2019-07-082-2/+4
* [3.7] bpo-37500: update Misc/NEWS entries to mention revertNed Deily2019-07-082-1/+4
* [3.7] bpo-37500: Revert commit 85ed1712e428f93408f56fc684816f9a85b0ebc0 (GH-1...Pablo Galindo2019-07-083-29/+9
* 3.7.4rc2v3.7.4rc2Ned Deily2019-07-0212-23/+93
* bpo-37463: match_hostname requires quad-dotted IPv4 (GH-14499)Christian Heimes2019-07-023-10/+32
* bpo-34602: Avoid failures setting macOS stack resource limit (GH-14546)Miss Islington (bot)2019-07-024-16/+16
* Put pyexpatns.h include back. bpo-37437 (GH-14539)Miss Islington (bot)2019-07-021-0/+4
* Minor updates to macOS installer screens for 3.7.4Ned Deily2019-07-012-3/+9
* [3.7] bpo-37440: Enable TLS 1.3 post-handshake auth in http.client (GH-14448)...Miss Islington (bot)2019-07-014-0/+32
* [3.7] bpo-37428: Don't set PHA verify flag on client side (GH-14421) (GH-14493)Miss Islington (bot)2019-07-013-17/+61
* bpo-37437: Pass -Wno-unreachable-code when compiling expat. (GH-14470)Miss Islington (bot)2019-07-011-2/+2
* bpo-37369: Fix path handling when python.exe is used as a symlink (GH-14461)Steve Dower2019-07-011-44/+62
* bpo-37369: Fix venv and test symlinking (GH-14456)Steve Dower2019-07-014-47/+96
* bpo-37369: Fixes path for sys.executable when running from the Microsoft Stor...Steve Dower2019-07-017-147/+115
* closes bpo-37437: Update vendorized expat to 2.2.7. (GH-14436)Miss Islington (bot)2019-07-017-32/+22
* Improve Windows commands in tutorial (GH-14401)Steve Dower2019-07-011-6/+4
* [3.7] bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304) ...Miss Islington (bot)2019-07-014-6/+37
* bpo-35360: Update Windows builds to use SQLite 3.28.0 (GH-14179)Miss Islington (bot)2019-07-014-3/+4
* bpo-32627: Fix compile error when conflicting `_uuid` headers included (GH-11...Miss Islington (bot)2019-07-012-3/+7
* bpo-37156: Fix libssl DLL tag in MSI sources (GH-14219)Steve Dower2019-07-011-2/+3
* 3.7.4rc1v3.7.4rc1Ned Deily2019-06-18164-398/+1702
* Changelog fixups for 3.7.3rc1Ned Deily2019-06-182-1/+0
* Update macOS installer welcome and readme for 3.7.4Ned Deily2019-06-182-52/+79
* bpo-36231: Support building on macOS without /usr/include (GH-13773) (GH-14208)Ned Deily2019-06-182-7/+49
* bpo-34903: Document that some strptime formats only require 1 digit (GH-14149)Miss Islington (bot)2019-06-183-15/+56
* bpo-35360: Update macOS installer to use SQLite 3.28.0 (GH-14180)Miss Islington (bot)2019-06-182-3/+4
* bpo-35031: also disable TLS 1.3 for test_start_tls_server_1 on macOS (GH-1418...Miss Islington (bot)2019-06-181-2/+4
* bpo-34631: Updated OpenSSL to 1.1.1c in macOS installer (GH-14187)Miss Islington (bot)2019-06-182-3/+14
* bpo-5680: IDLE: Customize running a module (GH-13763)Miss Islington (bot)2019-06-1711-51/+211
* bpo-34631: Updated OpenSSL to 1.1.1c in Windows installer (GH-14163)Steve Dower2019-06-174-5/+6
* bpo-37321: Edit IDLE subprocess connection error messages. (GH-14170)Miss Islington (bot)2019-06-174-9/+16
* bpo-37039: Make IDLE's Zoom Height adjust to users' screens (GH-13678)Miss Islington (bot)2019-06-175-29/+125
* bpo-37194: Complete PyObject_CallXXX() docs (GH-14156) (GH-14158)Victor Stinner2019-06-171-6/+13
* bpo-35031, test_asycio: disable TLS 1.3 in test_start_tls_server_1() (GH-14148)Miss Islington (bot)2019-06-171-0/+6
* bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051) ...Miss Islington (bot)2019-06-173-12/+16
* bpo-36688: Adding an implementation of RLock in _dummy_thread (GH-12943)Miss Islington (bot)2019-06-172-1/+52
* bpo-28805: document METH_FASTCALL (GH-14079)Miss Islington (bot)2019-06-162-12/+52
* bpo-37220: Fix 2.7 test -R crash on Windows. (GH-13957)Miss Islington (bot)2019-06-161-2/+2
* Doc: Remove an ugly space before a dot. (GH-14123)Miss Islington (bot)2019-06-161-1/+1
* bpo-35922: Fix RobotFileParser when robots.txt has no relevant crawl delay or...Miss Islington (bot)2019-06-163-14/+26
* [3.7] Doc: Add an optional obsolete header. (GH-13638). (GH-13655)Julien Palard2019-06-152-0/+20
* bpo-37289: Remove 'if False' handling in the peephole optimizer (GH-14099) (G...Miss Islington (bot)2019-06-151-9/+3
* Fix typo in Lib/concurrent/futures/thread.py (GH-13953)Miss Islington (bot)2019-06-152-2/+2
* [3.7] bpo-37279: Fix asyncio sendfile support when extra data are sent in fa...Andrew Svetlov2019-06-153-3/+6
* Update weakref.rst (GH-14098)Miss Islington (bot)2019-06-151-5/+6
* Use threadpool for reading from file in sendfile fallback mode (GH-14076)Miss Islington (bot)2019-06-152-1/+2
* bpo-19865: ctypes.create_unicode_buffer() supports non-BMP strings on Windows...Miss Islington (bot)2019-06-143-1/+20
* bpo-35998: Avoid TimeoutError in test_asyncio: test_start_tls_server_1() (GH-...Victor Stinner2019-06-142-18/+20
* Update concurrent.futures.rst (GH-14061)Miss Islington (bot)2019-06-141-6/+8