summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-39481: Make os.DirEntry generic (GH-19415)Batuhan Taşkaya2020-04-071-1/+2
* bpo-40089: Add _at_fork_reinit() method to locks (GH-19195)Victor Stinner2020-04-072-7/+43
* bpo-39481: Implementation for PEP 585 (#18239)Guido van Rossum2020-04-0715-53/+282
* bpo-40214: Temporarily disable a ctypes test (GH-19404)Zachary Ware2020-04-071-2/+5
* bpo-40196: Fix a bug in the symtable when reporting inspecting global variabl...Pablo Galindo2020-04-062-2/+6
* bpo-40182: Remove the _field_types attribute of the NamedTuple class (GH-19368)Serhiy Storchaka2020-04-042-8/+4
* bpo-36517: Raise error on multiple inheritance with NamedTuple (GH-19363)Serhiy Storchaka2020-04-042-0/+10
* Convert tuples to sets for faster searches (GH-19365)Raymond Hettinger2020-04-041-3/+3
* bpo-38689: avoid IDLE hanging when calltip fails getting a signature (GH-17152)Tal Einat2020-04-043-15/+30
* bpo-40141: Include the value in the column position for keyword AST nodes (GH...Pablo Galindo2020-04-031-1/+1
* bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289)Pablo Galindo2020-04-032-2/+2
* bpo-40112: distutils test_search_cpp: Fix logic to determine if C compiler is...Michael Felt2020-04-031-2/+1
* bpo-40140: test_builtin.PtyTests registers SIGHUP handler (GH-19314)Victor Stinner2020-04-022-8/+21
* lib2to3: Support named assignment expressions (GH-12702)Tim Hatch2020-04-025-6/+25
* bpo-38972: Link to instructions to change PowerShell execution policy (GH-19131)Derek Keeler2020-04-021-4/+15
* bpo-40115: Fix refleak in test_asyncio.test_run_in_executor_cancel() (GH-19282)Kyle Stanley2020-04-021-0/+2
* bpo-40094: CGIHTTPRequestHandler logs exit code (GH-19285)Victor Stinner2020-04-021-2/+3
* bpo-39503: CVE-2020-8492: Fix AbstractBasicAuthHandler (GH-18284)Victor Stinner2020-04-022-52/+107
* bpo-40094: mailcap.test() uses waitstatus_to_exitcode() (GH-19287)Victor Stinner2020-04-021-0/+1
* bpo-40141: Add line and column information to ast.keyword nodes (GH-19283)Pablo Galindo2020-04-011-1/+1
* bpo-40094: Add os.waitstatus_to_exitcode() (GH-19201)Victor Stinner2020-04-0111-58/+50
* bpo-39682: make `pathlib.Path` immutable by removing (undocumented) support f...Barney Gale2020-04-012-49/+18
* bpo-33262: Deprecate passing None for `s` to shlex.split() (GH-6514)Zackery Spytz2020-04-012-1/+10
* bpo-40121: Fix exception type in test (GH-19267)Steve Dower2020-04-011-1/+1
* Handle when IOCTL_VM_SOCKETS_GET_LOCAL_CID does not exist in "socket" (GH-19270)Pablo Galindo2020-04-011-0/+2
* bpo-40094: Add missing import to wait_process() (GH-19268)Victor Stinner2020-04-011-0/+2
* bpo-31160: Fix race condition in test_os.PtyTests (GH-19263)Victor Stinner2020-03-311-2/+9
* bpo-40094: Add _bootsubprocess._waitstatus_to_exitcode (GH-19264)Victor Stinner2020-03-311-11/+15
* bpo-40094: Enhance threading tests (GH-19260)Victor Stinner2020-03-312-31/+39
* bpo-40094: Enhance fork and wait tests (GH-19259)Victor Stinner2020-03-314-24/+15
* bpo-40094: Add test.support.wait_process() (GH-19254)Victor Stinner2020-03-3117-103/+109
* bpo-40003: test.bisect_cmd copies Python options (GH-19246)Victor Stinner2020-03-311-2/+14
* bpo-40121: Fixes audit event raised on creating a new socket (GH-19238)Steve Dower2020-03-312-0/+34
* bpo-40108: Improve the error message in runpy when importing a module that in...Pablo Galindo2020-03-312-0/+13
* Fix bug in test_collections.py (#19221)Curtis Bucher2020-03-301-1/+2
* bpo-40077: Convert _abc module to use PyType_FromSpec() (GH-19202)Dong-hee Na2020-03-301-1/+1
* bpo-39073: validate Address parts to disallow CRLF (#19007)Ashwin Ramaswami2020-03-302-0/+24
* bpo-38002: Use False/True for IDLE pyshell bools (GH-19203)Terry Jan Reedy2020-03-281-13/+12
* bpo-40086: Update/fix test_etree test case in test_typing (GH-19189)Furkan Önder2020-03-281-4/+2
* bpo-39812: Remove daemon threads in concurrent.futures (GH-19149)Kyle Stanley2020-03-274-32/+90
* bpo-40089: Fix threading._after_fork() (GH-19191)Victor Stinner2020-03-271-1/+9
* bpo-1812: Fix newline conversion when doctest.testfile loads from a package w...Peter Donis2020-03-262-5/+97
* bpo-40067: Improve error messages for multiple star expressions in assignment...Furkan Önder2020-03-261-2/+7
* bpo-40016: re docstring: Clarify relationship of inline and argument flags (#...Ram Rachum2020-03-251-2/+4
* bpo-36144: Add union operators to WeakValueDictionary584 (#19127)Curtis Bucher2020-03-252-0/+56
* bpo-40029 mark test_importlib.test_zip as requiring zlib (#19105)Roman Yurchak2020-03-241-0/+4
* bpo-40050: Fix importlib._bootstrap_external (GH-19135)Victor Stinner2020-03-241-21/+13
* bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120)Victor Stinner2020-03-241-28/+0
* Merge tag 'v3.9.0a5'Łukasz Langa2020-03-231-20/+68
|\
| * Python 3.9.0a5v3.9.0a5Łukasz Langa2020-03-231-20/+68