summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-40267: Fix message when last input character produces a SyntaxError (GH-1...Lysandros Nikolaou2020-04-151-1/+1
* Clean up compatibility code in importlib fixtures (#19156)Jason R. Coombs2020-04-151-16/+2
* bpo-40277: Add a repr() to namedtuple's _tuplegetter to aid with introspectio...Ammar Askar2020-04-141-0/+12
* bpo-39481: PEP 585 for dataclasses, mailbox, contextvars (GH-19425)Ethan Smith2020-04-144-5/+15
* bpo-9216: Nobody expects the geohashing FIPS inquisition (GH-19520)Miro Hrončok2020-04-141-1/+1
* bpo-40260: Update modulefinder to use io.open_code() and respect coding comme...Barry2020-04-142-21/+74
* bpo-395222: Correctly unparse unicode prefix in ast_unparse.c (GH-19512)Batuhan Taşkaya2020-04-141-0/+1
* bpo-32033: Fix test_pwd failures on Android (GH-19502)Zackery Spytz2020-04-141-1/+1
* bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19511)Dong-hee Na2020-04-152-9/+10
* regrtest: log timeout at startup (GH-19514)Victor Stinner2020-04-142-4/+15
* bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19477)Dong-hee Na2020-04-141-4/+4
* bpo-39481: Make weakref and WeakSet generic (GH-19497)Ethan Smith2020-04-132-0/+5
* bpo-39481: Make functools.cached_property, partial, partialmethod generic (#1...Ethan Smith2020-04-132-0/+8
* Fix typo from Lib/asyncio/events.py (GH-19410)Galden2020-04-141-1/+1
* bpo-40208: Remove deprecated has_exec method of SymbolTable (GH-19396)Batuhan Taşkaya2020-04-142-5/+0
* bpo-39380: Change ftplib encoding from latin-1 to utf-8 (GH-18048)Sebastian Pedersen2020-04-142-41/+75
* bpo-32894: Support unparsing of infinity numbers in ast_unparser.c (GH-17426)Batuhan Taşkaya2020-04-141-0/+14
* bpo-40091: Fix a hang at fork in the logging module (GH-19416)Victor Stinner2020-04-141-12/+12
* bpo-39481: fix test_genericalias on Android (GH-19469)Chih-Hsuan Yen2020-04-131-1/+7
* bpo-40241: Add pycore_gc.h header file (GH-19494)Victor Stinner2020-04-132-4/+4
* Add double quote cases to invalid prefix tests (GH-19489)Pablo Galindo2020-04-131-4/+5
* bpo-40234: Revert "bpo-37266: Daemon threads are now denied in subinterpreter...Victor Stinner2020-04-122-28/+19
* bpo-40246: Report a better error message for invalid string prefixes (GH-19476)Lysandros Nikolaou2020-04-121-1/+1
* bpo-31758: Prevent crashes when using an uninitialized _elementtree.XMLParser...Oren Milman2020-04-121-0/+15
* bpo-13743: Add some documentation strings to xml.dom.minidom (GH-16355)Alex Itkes2020-04-121-0/+23
* bpo-39011: Preserve line endings within ElementTree attributes (GH-18468)mefistotelis2020-04-122-9/+10
* bpo-40126: Fix reverting multiple patches in unittest.mock. (GH-19351)Serhiy Storchaka2020-04-112-49/+27
* bpo-39481: PEP 585 for a variety of modules (GH-19423)Batuhan Taşkaya2020-04-1013-0/+57
* bpo-39481: PEP 585 for difflib, filecmp, fileinput (#19422)Ethan Smith2020-04-094-0/+17
* bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421)Ethan Smith2020-04-091-4/+5
* bpo-39481: PEP 585 for ipaddress.py (GH-19418)Batuhan Taşkaya2020-04-092-0/+10
* Generic itertools.chain (GH-19417)Ethan Smith2020-04-091-1/+3
* bpo-31904: Fix test_c_locale_coercion encodings for VxWorks RTOS (GH-19448)pxinwr2020-04-091-0/+4
* bpo-40187: Refactor typing.TypedDict. (GH-19372)Serhiy Storchaka2020-04-081-34/+33
* bpo-40185: Refactor typing.NamedTuple (GH-19371)Serhiy Storchaka2020-04-082-59/+54
* 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-052-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-033-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-032-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