summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_si...Filipe Laíns2020-11-212-1/+18
* bpo-28002: Roundtrip f-strings with ast.unparse better (#19612)Shantanu2020-11-202-37/+115
* bpo-35498: Added slice support to PathLib parents attribute. (GH-11165)Joshua Cannon2020-11-202-0/+32
* bpo-42403: Use @staticmethod in importlib (GH-23395)Victor Stinner2020-11-202-16/+16
* bpo-1635741: Convert _sre types to heap types and establish module state (PEP...Erlend Egeberg Aasland2020-11-201-0/+4
* bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413)Christian Heimes2020-11-2018-43/+45
* bpo-42416: Use inspect.getdoc for IDLE calltips (GH-23416)Terry Jan Reedy2020-11-203-6/+12
* bpo-42345: Fix hash implementation of typing.Literal (GH-23383)Yurii Karabas2020-11-192-1/+6
* bpo-42403: Simplify importlib external bootstrap (GH-23397)Victor Stinner2020-11-193-65/+55
* bpo-42403: Fix pyflakes warnings in importlib (GH-23396)Victor Stinner2020-11-193-4/+0
* bpo-42398: Fix "make regen-all" race condition (GH-23362)Victor Stinner2020-11-181-7/+19
* bpo-41561: skip test_min_max_version_mismatch (GH-22308)Christian Heimes2020-11-181-0/+1
* bpo-42395: Add aclosing to __all__ (GH-23356)Tom Gringauz2020-11-171-1/+1
* bpo-41625: Skip os.splice() tests on AIX (GH-23354)Victor Stinner2020-11-171-0/+8
* Fix: Docstrings hidden by slots. (GH-23352)Julien Palard2020-11-171-15/+6
* bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267)Mark Shannon2020-11-172-24/+49
* bpo-42264: Deprecate sqlite3.OptimizedUnicode (GH-23163)Erlend Egeberg Aasland2020-11-172-3/+18
* bpo-40637: Don't test builtin PBKDF2 without builtin hashes (GH-20980)Christian Heimes2020-11-171-9/+18
* bpo-42345: Fix three issues with typing.Literal parameters (GH-23294)Yurii Karabas2020-11-172-23/+101
* bpo-42381: Allow walrus in set literals and set comprehensions (GH-23332)Pablo Galindo2020-11-171-3/+57
* bpo-41625: Expose the splice() system call in the os module (GH-21947)Pablo Galindo2020-11-171-0/+117
* bpo-42316: Allow unparenthesized walrus operator in indexes (GH-23317)Lysandros Nikolaou2020-11-161-0/+21
* bpo-42374: Allow unparenthesized walrus in genexps (GH-23319)Lysandros Nikolaou2020-11-161-0/+9
* bpo-42350: Fix Thread._reset_internal_locks() (GH-23268)Victor Stinner2020-11-162-2/+35
* bpo-42332: Add weakref slot to types.GenericAlias (GH-23250)kj2020-11-161-38/+48
* bpo-42318: Fix support of non-BMP characters in Tkinter on macOS (GH-23281)Serhiy Storchaka2020-11-151-6/+40
* bpo-42131: Add PEP 451-related methods to zipimport (GH-23187)Brett Cannon2020-11-132-19/+86
* bpo-41001: Add os.eventfd() (#20930)Christian Heimes2020-11-131-0/+86
* bpo-40968: Send http/1.1 ALPN extension (#20959)Christian Heimes2020-11-132-0/+5
* bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251)Mark Shannon2020-11-122-117/+114
* bpo-42308: Add threading.__excepthook__ (GH-23218)Mario Corchero2020-11-122-0/+25
* Bump magic number. (GH-23245)Mark Shannon2020-11-121-1/+2
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-126-34/+28
* bpo-39411: pyclbr rewrite on AST (#18103)Batuhan Taskaya2020-11-112-211/+109
* bpo-42140: Improve asyncio.wait function (GH-22938)Diogo Dutra2020-11-102-2/+28
* bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...Vladimir Matveev2020-11-101-1/+1
* bpo-42014: shutil.rmtree: call onerror with correct function (GH-22585)Michal Čihař2020-11-101-1/+1
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...Andrew Svetlov2020-11-102-3/+40
* Fix typo in test_array.py (GH-23189)Ikko Ashimine2020-11-101-1/+1
* bpo-42260: Compute the path config in the main init (GH-23211)Victor Stinner2020-11-101-7/+19
* bpo-36310: Allow pygettext.py to detect calls to gettext in f-strings. (GH-19...jack11422020-11-091-0/+70
* bpo-41543: contextlib.nullcontext can fill in for an async context manager (G...Tom Gringauz2020-11-092-2/+20
* bpo-40624: Add support for the XPath != operator in xml.etree (GH-22147)Ammar Askar2020-11-092-7/+59
* bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...kj2020-11-091-0/+22
* bpo-41754: Ignore NotADirectoryError in invocation of xdg-settings (GH-23075)Ronald Oussoren2020-11-081-1/+1
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-089-14/+322
* bpo-42133: update parts of the stdlib to fall back to `__spec__.loader` when ...Brett Cannon2020-11-074-14/+33
* bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123)Hai Shi2020-11-061-0/+3
* bpo-26389: Allow passing an exception object in the traceback module (GH-22610)Zackery Spytz2020-11-052-13/+43
* bpo-42260: PyConfig_Read() only parses argv once (GH-23168)Victor Stinner2020-11-052-6/+12