summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* 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
* tempfile: Use random.choises() instead of choise() (GH-23068)Inada Naoki2020-11-011-2/+2
* bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059)Ronald Oussoren2020-11-011-0/+12
* bpo-42218: Correctly handle errors in left-recursive rules (GH-23065)Lysandros Nikolaou2020-10-311-0/+8
* Revert "bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997)"Inada Naoki2020-10-311-2/+2
* bpo-42208: Add _locale._get_locale_encoding() (GH-23052)Victor Stinner2020-10-311-9/+9
* bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_fl...Pablo Galindo2020-10-301-0/+17
* bpo-42172: Correct typo for test_socket.py (GH-23013)Akashkumar D Khunt2020-10-301-3/+3
* bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997)Eric W2020-10-301-2/+2
* bpo-34204: Use pickle.DEFAULT_PROTOCOL in shelve (GH-19639)Zackery Spytz2020-10-291-1/+3
* bpo-41659: Disallow curly brace directly after primary (GH-22996)Lysandros Nikolaou2020-10-272-0/+4
* bpo-30681: Support invalid date format or value in email Date header (GH-22090)Georges Toth2020-10-273-0/+34
* bpo-42146: Fix memory leak in subprocess.Popen() in case of uid/gid overflow ...Alexey Izbyshev2020-10-261-0/+13
* bpo-42043: Add support for zipfile.Path subclasses (#22716)Jason R. Coombs2020-10-251-106/+206
* bpo-41919: Avoid resource leak in test_io (GH-22973)Hai Shi2020-10-251-12/+13
* bpo-41490: ``path`` and ``contents`` to aggressively close handles (#22915)Jason R. Coombs2020-10-253-0/+79
* bpo-41052: Fix pickling heap types implemented in C with protocols 0 and 1 (G...Serhiy Storchaka2020-10-241-0/+18
* bpo-38976: Add support for HTTP Only flag in MozillaCookieJar (#17471)Jacob Neil Taylor2020-10-231-0/+5
* bpo-40592: shutil.which will not return None anymore if ; is the last char in...Christopher Marchfelder2020-10-231-0/+17