summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-37479: on Enum subclasses with mixins, __format__ uses overridden __str__...thatneat2019-07-045-6/+63
* bpo-37266: Add bpo number to the What's New entry (GH614584)Victor Stinner2019-07-041-0/+1
* bpo-37493: use _PyObject_CallNoArg in more places (GH-14575)Jeroen Demeyer2019-07-046-16/+15
* bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer2019-07-0444-146/+128
* bpo-37421: Fix multiprocessing get_temp_dir() finalizer (GH-14572)Victor Stinner2019-07-042-1/+17
* bpo-37459: importlib docs improperly reference get_resource_loader() (#14568)aldwinaldwin2019-07-041-1/+1
* bpo-19696: Replace deprecated method in "test_import_pkg.py" (GH-14466)Kyle Stanley2019-07-033-2/+4
* bpo-37233: optimize method_vectorcall in case of totalargs == 0 (GH-14550)Jeroen Demeyer2019-07-031-6/+10
* bpo-37484: use _PyObject_Vectorcall for __exit__ (GH-14557)Jeroen Demeyer2019-07-031-5/+3
* bpo-37421: Fix test_distutils.test_build_ext() (GH-14564)Victor Stinner2019-07-033-23/+36
* bpo-37421: test_concurrent_futures cleans up multiprocessing (GH-14563)Victor Stinner2019-07-032-7/+24
* bpo-37421: test_winconsoleio doesn't leak temp file anymore (GH-14562)Victor Stinner2019-07-032-4/+4
* Fix typo in 3.9's Whats new. Pyton -> Python (GH-14567)ILJI CHOI2019-07-031-1/+1
* bpo-37441: Fix wrong PyErr_SetImportErrorSubclass signature in doc (GH-14453)Hai Shi2019-07-031-1/+1
* bpo-37463: match_hostname requires quad-dotted IPv4 (GH-14499)Christian Heimes2019-07-023-10/+32
* bpo-37421: urllib.request tests call urlcleanup() (GH-14529)Victor Stinner2019-07-029-0/+62
* bpo-37421: multiprocessing tests call _run_finalizers() (GH-14527)Victor Stinner2019-07-022-0/+5
* bpo-37335, test_c_locale_coercion: Remove unnecessary code (GH-14447)Jakub Kulík2019-07-022-19/+6
* bpo-36904: Optimize _PyStack_UnpackDict (GH-14517)Jeroen Demeyer2019-07-022-81/+85
* bpo-34602: Avoid failures setting macOS stack resource limit (GH-14546)Ned Deily2019-07-024-16/+16
* Put pyexpatns.h include back. bpo-37437 (GH-14539)Benjamin Peterson2019-07-021-0/+4
* bpo-37363: Add audit events on startup for the run commands (GH-14524)Steve Dower2019-07-017-13/+190
* bpo-37470: Document more clearly the error handling for QueueHandler.emit(). ...Vinay Sajip2019-07-011-1/+6
* bpo-36763: Use PyConfig_Clear() (GH-14445)Victor Stinner2019-07-014-186/+151
* bpo-37469: Document usability of SimpleQueue with QueueHandler and QueueListe...Vinay Sajip2019-07-011-8/+13
* bpo-36763: Add PyConfig_SetWideStringList() (GH-14444)Victor Stinner2019-07-014-1/+29
* bpo-37472: Remove Lib/test/outstanding_bugs.py (GH-14516)Victor Stinner2019-07-013-19/+1
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-0153-84/+31
* bpo-37467: Fix PyErr_Display() for bytes filename (GH-14504)Victor Stinner2019-07-013-48/+80
* bpo-37209: Add pickle entry for 3.8 whatsnew (GH-14503)Pierre Glaser2019-07-011-0/+14
* bpo-10945: Drop support for bdist_wininst on non-Windows systems (GH-14506)Miro Hrončok2019-07-013-2/+7
* bpo-32934: Clarified meaning of 'capacity' for BufferingHandler and MemoryHan...Vinay Sajip2019-07-012-10/+12
* bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode...Pablo Galindo2019-07-018-34/+79
* Minor updates to the macOS installer screens for 3.8.0b2 (GH-14501)Ned Deily2019-07-012-5/+16
* bpo-37440: Enable TLS 1.3 post-handshake auth in http.client (GH-14448)Christian Heimes2019-07-014-0/+32
* bpo-37428: Don't set PHA verify flag on client side (GH-14421)Christian Heimes2019-07-013-17/+61
* bpo-36168: Lowercase the word "subsequent" in get_value doc (GH-14485)Krishna Oza2019-07-011-1/+1
* bpo-37199: Fix test failures when IPv6 is unavailable or disabled (#14480)Zackery Spytz2019-06-305-4/+21
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-307-72/+378
* bpo-29505: Add more fuzzing for re.compile, re.load and csv.reader (GH-14255)Ammar Askar2019-06-309-16/+493
* bpo-30754: Document textwrap.dedent blank line behavior. (GH-14469)tmblweed2019-06-302-3/+6
* bpo-37437: Pass -Wno-unreachable-code when compiling expat. (GH-14470)Benjamin Peterson2019-06-291-2/+2
* Make StreamHandler.terminator more discoverable (GH-14359)Andre Delfino2019-06-291-7/+11
* Fix indentation in logging.handlers.setStream (GH-14358)Andre Delfino2019-06-291-2/+1
* bpo-37369: Fixes crash when reporting fatal error (GH-14468)Steve Dower2019-06-291-2/+3
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-2917-268/+401
* bpo-19696: Moved "test_pkgimport.py" to dir "test_importlib" (GH-14303)Kyle Stanley2019-06-281-0/+0
* bpo-37403: Touch up venv docs (GH-14458)Brett Cannon2019-06-282-7/+20
* bpo-31783: Fix a race condition creating workers during shutdown (#13171)Brian Quinlan2019-06-282-2/+7
* bpo-37412: Fix test_os.test_getcwd_long_path() on macOS (GH-14452)Victor Stinner2019-06-281-2/+1