summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* | bpo-36144: Add union operators to WeakKeyDictionary (#19106)Curtis Bucher2020-03-232-0/+56
* | bpo-36144: Add PEP 584 operators to collections.ChainMap (#18832)Curtis Bucher2020-03-232-0/+64
|/
* bpo-39830: Add zipfile.Path to __all__ (GH-19115)Zackery Spytz2020-03-231-1/+2
* bpo-39999: Improve compatibility of the ast module. (GH-19056)Serhiy Storchaka2020-03-222-4/+26
* bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516)Ronald Oussoren2020-03-222-1/+12
* bpo-36543: Remove the xml.etree.cElementTree module. (GH-19108)Serhiy Storchaka2020-03-222-18/+0
* bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. ...Serhiy Storchaka2020-03-212-4/+4
* bpo-24916: Remove an outdated comment. (GH-19101)Serhiy Storchaka2020-03-211-2/+0
* bpo-40019: Skip test_gdb if Python was optimized (GH-19081)Victor Stinner2020-03-201-0/+9
* bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (G...Batuhan Taşkaya2020-03-191-1/+8
* bpo-40000: Improve error messages when validating invalid ast.Constant nodes ...Batuhan Taşkaya2020-03-191-0/+9
* bpo-39220: Do not optimise annotation if 'from __future__ import annotations'...Pablo Galindo2020-03-181-1/+9
* bpo-27807: Skip test_site.test_startup_imports() if pth file (GH-19060)Victor Stinner2020-03-181-4/+23
* bpo-39957: Change Signature.parameters to OrderedDict (GH-18988)Jens Reidel2020-03-182-5/+10
* bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051)Victor Stinner2020-03-181-1/+2
* bpo-39719: Remove softspace from tempfile.SpooledTemporaryFile (GH-18599)Shantanu2020-03-171-4/+0
* bpo-39991: Enhance uuid parser for MAC address (GH-19045)Victor Stinner2020-03-172-31/+93
* bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)Victor Stinner2020-03-171-23/+0
* bpo-26067: Do not fail test_shutil / chown when gid/uid cannot be resolved (#...Matthias Braun2020-03-171-6/+11
* bpo-39991: uuid._netstat_getnode() ignores IPv6 addresses (GH-19043)Victor Stinner2020-03-172-10/+49