summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* 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-2015-39/+41
* bpo-42345: Fix hash implementation of typing.Literal (GH-23383)Yurii Karabas2020-11-191-0/+5
* 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-41625: Skip os.splice() tests on AIX (GH-23354)Victor Stinner2020-11-171-0/+8
* bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267)Mark Shannon2020-11-172-24/+49
* 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-171-0/+25
* 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-161-0/+29
* 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-131-18/+53
* bpo-41001: Add os.eventfd() (#20930)Christian Heimes2020-11-131-0/+86
* 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-121-0/+21
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-125-9/+20
* bpo-39411: pyclbr rewrite on AST (#18103)Batuhan Taskaya2020-11-111-5/+2
* bpo-42140: Improve asyncio.wait function (GH-22938)Diogo Dutra2020-11-101-0/+24
* bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...Vladimir Matveev2020-11-101-1/+1
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...Andrew Svetlov2020-11-101-0/+18
* 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-091-1/+13
* bpo-40624: Add support for the XPath != operator in xml.etree (GH-22147)Ammar Askar2020-11-091-0/+35
* bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...kj2020-11-091-0/+22
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-085-1/+262
* 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-051-0/+20
* bpo-42260: PyConfig_Read() only parses argv once (GH-23168)Victor Stinner2020-11-052-6/+12
* bpo-42260: Add _PyConfig_FromDict() (GH-23167)Victor Stinner2020-11-052-0/+257
* bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157)Pablo Galindo2020-11-051-0/+23
* bpo-40816 Add AsyncContextDecorator class (GH-20516)Kazantcev Andrey2020-11-051-0/+27
* bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158)Victor Stinner2020-11-041-0/+9
* Disable peg generator tests when building with PGO (GH-23141)serge-sans-paille2020-11-041-0/+6
* bpo-42236: os.device_encoding() respects UTF-8 Mode (GH-23119)Victor Stinner2020-11-041-0/+27
* bpo-42251: Add gettrace and getprofile to threading (GH-23125)Mario Corchero2020-11-041-0/+21
* bpo-26789: Fix logging.FileHandler._open() at exit (GH-23053)Victor Stinner2020-11-021-5/+38
* bpo-42103: Improve validation of Plist files. (GH-22882)Serhiy Storchaka2020-11-021-49/+340
* Revert "bpo-37193: remove thread objects which finished process its request (...Jason R. Coombs2020-11-021-24/+0
* bpo-42224: Fix test_format when locale does not expect number grouping (GH-23...Lysandros Nikolaou2020-11-021-2/+5
* bpo-41435: Add sys._current_exceptions() function (GH-21689)Julien Danjou2020-11-021-0/+67
* bpo-41229: Update docs for explicit aclose()-required cases and add contextli...Joongi Kim2020-11-021-1/+58
* bpo-37193: remove thread objects which finished process its request (GH-13893)MARUYAMA Norihiro2020-11-011-0/+24
* bpo-42233: Correctly repr GenericAlias when used with typing module (GH-23081)kj2020-11-011-0/+7