summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-39656: Ensure `bin/python3.#` is always present in virtual environments o...Anthony Sottile2020-03-171-1/+1
* bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515)Batuhan Taşkaya2020-03-162-4/+14
* bpo-38870: Implement support for ast.FunctionType in ast.unparse (GH-19016)Batuhan Taşkaya2020-03-152-3/+20
* bpo-39360: Ensure all workers exit when finalizing a multiprocessing Pool (GH...Batuhan Taşkaya2020-03-152-2/+23
* bpo-39507: Add HTTP status 418 "I'm a Teapot" (GH-18291)Ross2020-03-152-0/+4
* bpo-39965: Correctly raise SyntaxError if await is used outside async functio...Pablo Galindo2020-03-151-0/+38
* bpo-38576: Disallow control characters in hostnames in http.client (GH-18995)Ashwin Ramaswami2020-03-143-3/+56
* bpo-39509: Update HTTP status code to follow IANA (GH-18294)Dong-hee Na2020-03-142-0/+6
* bpo-39871: Fix possible SystemError in atan2, copysign and remainder (GH-18806)Zackery Spytz2020-03-141-0/+16
* Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985)Inada Naoki2020-03-141-22/+0
* bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659)Inada Naoki2020-03-141-0/+22
* bpo-36144: OrderedDict Union (PEP 584) (#18967)Brandt Bucher2020-03-132-0/+61
* bpo-36144: Update os.environ and os.environb for PEP 584 (#18911)Charles Burkland2020-03-132-1/+109
* bpo-39947: Move get_recursion_depth() to _testinternalcapi (GH-18974)Victor Stinner2020-03-132-2/+2
* bpo-39936: _aix_support uses _bootsubprocess (GH-18970)Victor Stinner2020-03-121-35/+25
* bpo-39689: Do not test undefined casts to _Bool (GH-18964)Stefan Krah2020-03-121-0/+4
* Fix syntax error in an example in the ast documentation and sync docstrings (...Pablo Galindo2020-03-121-2/+2
* bpo-38080: Added "getproxies" to urllib fixes in the 2to3 tool (GH-16167)José Roberto Meza Cabrera2020-03-112-1/+5
* bpo-39916: Use os.scandir() as context manager in Path.glob(). (GH-18880)Serhiy Storchaka2020-03-111-2/+4
* bpo-39915: Ensure await_args_list is updated according to the order in which ...Karthikeyan Singaravelan2020-03-112-1/+12
* bpo-39926: Update unicodedata checksum tests for Unicode 13.0 update. (GH-18913)Benjamin Peterson2020-03-111-2/+2
* Update some www.unicode.org URLs to use HTTPS. (GH-18912)Benjamin Peterson2020-03-112-2/+2
* closes bpo-39926: Update Unicode to 13.0.0. (GH-18910)Benjamin Peterson2020-03-111-0/+1
* Updates functools.py with consistent quotes (GH-18825)Nikita Sobolev2020-03-111-1/+1