summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-42260: Add _PyConfig_FromDict() (GH-23167)Victor Stinner2020-11-052-0/+257
* bpo-41877 Check for asert, aseert, assrt in mocks (GH-23165)vabr-g2020-11-052-3/+12
* 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-052-1/+51
* 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-042-1/+30
* Merge tag 'v3.10.0a2' into masterPablo Galindo2020-11-031-66/+132
|\
| * Python 3.10.0a2v3.10.0a2Pablo Galindo2020-11-031-66/+132
* | bpo-42249: Fix writing binary Plist files larger than 4 GiB. (GH-23121)Serhiy Storchaka2020-11-031-1/+1
|/
* bpo-26789: Fix logging.FileHandler._open() at exit (GH-23053)Victor Stinner2020-11-022-7/+45
* bpo-42103: Improve validation of Plist files. (GH-22882)Serhiy Storchaka2020-11-022-57/+358
* bpo-41943: Fix bug where assertLogs doesn't correctly filter messages… (GH-...Irit Katriel2020-11-022-0/+13
* Revert "bpo-37193: remove thread objects which finished process its request (...Jason R. Coombs2020-11-022-84/+13
* 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-42230: Improve asyncio documentation regarding accepting sets vs iterable...Jakub Stasiak2020-11-021-2/+2
* bpo-41229: Update docs for explicit aclose()-required cases and add contextli...Joongi Kim2020-11-022-1/+84
* bpo-40511: Stop unwanted flashing of IDLE calltips (GH-20910)Tal Einat2020-11-023-7/+141
* bpo-37193: remove thread objects which finished process its request (GH-13893)MARUYAMA Norihiro2020-11-012-13/+84
* bpo-42233: Correctly repr GenericAlias when used with typing module (GH-23081)kj2020-11-012-0/+9
* tempfile: Use random.choises() instead of choise() (GH-23068)Inada Naoki2020-11-012-6/+3
* bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059)Ronald Oussoren2020-11-012-2/+14
* 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-312-12/+14
* bpo-42208: Add _locale._get_locale_encoding() (GH-23052)Victor Stinner2020-10-313-98/+48
* 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-302-14/+12
* bpo-42029: Remove IRIX code (GH-23023)Victor Stinner2020-10-291-13/+0
* bpo-34204: Use pickle.DEFAULT_PROTOCOL in shelve (GH-19639)Zackery Spytz2020-10-292-3/+5
* 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-277-3/+50
* bpo-39101: Fixes BaseException hang in IsolatedAsyncioTestCase. (GH-22654)Lisa Roach2020-10-262-2/+29
* 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-252-115/+236
* 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-256-16/+111
* bpo-33987: Add master ttk Frame to IDLE search dialogs (GH-22942)Mark Roseman2020-10-253-14/+22
* bpo-33987: Use master ttk Frame for IDLE config dialog (GH-22943)Mark Roseman2020-10-241-5/+7