summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults (#18640)Zackery Spytz2022-11-281-1/+9
* gh-51524: Fix bug when calling trace.CoverageResults with valid infile (#99629)Furkan Onder2022-11-282-1/+11
* gh-99677: Deduplicate self-type in `mro` in `inspect._getmembers` (#99678)Nikita Sobolev2022-11-271-1/+1
* gh-99815: remove unused 'invalid' sentinel value and code that checks for it ...Anthony Sottile2022-11-271-7/+1
* GH-87235: Make sure "python /dev/fd/9 9</path/to/script.py" works on macOS (#...Ronald Oussoren2022-11-272-98/+119
* Remove unused local variables in inspect.py (#24218)Yonatan Goldschmidt2022-11-271-2/+1
* GH-66285: fix forking in asyncio (#99769)Kumar Aditya2022-11-272-0/+109
* bpo-45975: Simplify some while-loops with walrus operator (GH-29347)Nick Drozd2022-11-2628-153/+41
* gh-98108: Add limited pickleability to zipfile.Path (GH-98109)Jason R. Coombs2022-11-265-22/+108
* Fix zipfile packaging after GH-98103 (GH-99797)Jason R. Coombs2022-11-261-0/+7
* gh-91078: Return None from TarFile.next when the tarfile is empty (GH-91850)Sam Ezeh2022-11-262-0/+14
* gh-98098: Create packages from zipfile and test_zipfile (gh-98103)Jason R. Coombs2022-11-266-798/+829
* gh-97966: Restore prior expectation that uname_result._fields and ._asdict wo...Jason R. Coombs2022-11-262-2/+12
* gh-99029: Fix handling of `PureWindowsPath('C:\<blah>').relative_to('C:')` (G...Barney Gale2022-11-252-52/+18
* Fix typo on inline comment for email.generator (GH-98210)Gary Donovan2022-11-251-1/+1
* bpo-40882: Fix a memory leak in SharedMemory on Windows (GH-20684)Zackery Spytz2022-11-251-1/+4
* bpo-38031: Fix a possible assertion failure in _io.FileIO() (#GH-5688)Zackery Spytz2022-11-251-0/+8
* bpo-41260: C impl of datetime.date.strftime() takes different keyword arg (GH...Zackery Spytz2022-11-252-2/+5
* gh-64490: Fix bugs in argument clinic varargs processing (#32092)colorfulappl2022-11-242-4/+47
* GH-66285: Revert "fix forking in asyncio" (#99756)Kumar Aditya2022-11-242-108/+0
* GH-66285: skip asyncio fork tests for platforms without md5 hash (#99745)Kumar Aditya2022-11-241-0/+4
* GH-79033: Fix asyncio.Server.wait_closed() (#98582)Guido van Rossum2022-11-243-2/+29
* gh-99240: Fix double-free bug in Argument Clinic str_converter generated code...colorfulappl2022-11-242-22/+26
* gh-64490: Fix refcount error when arguments are packed to tuple in argument c...colorfulappl2022-11-242-2/+16
* gh-99708: fix bug where compiler crashes on if expression with an empty body ...Irit Katriel2022-11-241-0/+11
* gh-94808: [coverage] Add an asynchronous generator test where the generator i...zhanpon2022-11-241-0/+13
* GH-66285: fix forking in `asyncio` (#99539)Kumar Aditya2022-11-242-0/+104
* closes gh-99508: fix `TypeError` in `Lib/importlib/_bootstrap_external.py` (G...Nikita Sobolev2022-11-231-1/+2
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-228-21/+86
* gh-99645: Fix a bug in handling class cleanups in unittest.TestCase (GH-99646)Serhiy Storchaka2022-11-222-5/+32
* gh-88863: Clear ref cycles to resolve leak when asyncio.open_connection raise...Dong Uk, Kang2022-11-223-14/+35
* gh-91053: Add an optional callback that is invoked whenever a function is mod...mpage2022-11-221-0/+93
* gh-99341: Cover type ignore nodes when incrementing line numbers (GH-99422)Batuhan Taskaya2022-11-222-0/+18
* gh-47146: Soft-deprecate structmember.h, expose its contents via Python.h (GH...Petr Viktorin2022-11-221-26/+65
* gh-99659: Use correct exceptions in sqlite3 bigmem tests (#99660)Łukasz Langa2022-11-211-4/+4
* gh-96002: Add functional test for Argument Clinic (#96178)colorfulappl2022-11-211-1/+393
* Add more details in test_unittest (GH-99626)Serhiy Storchaka2022-11-212-35/+67
* gh-99578: Fix refleak in _imp.create_builtin() (#99642)Victor Stinner2022-11-211-0/+30
* gh-90994: Improve error messages upon call arguments syntax errors (GH-96893)Lysandros Nikolaou2022-11-201-0/+21
* gh-99581: Fix a buffer overflow in the tokenizer when copying lines that fill...Pablo Galindo Salgado2022-11-201-0/+16
* gh-61460: Add a comment describing the multiprocessing.connection protocol (g...Gregory P. Smith2022-11-201-0/+68
* gh-99211: Point to except/except* on syntax errors when mixing them (GH-99215)Lysandros Nikolaou2022-11-201-2/+2
* gh-99201: fix IndexError when initializing sysconfig config variablesFilipe Laíns2022-11-191-1/+6
* gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException (...Irit Katriel2022-11-181-4/+18
* gh-99442: Fix handling in py.exe launcher when argv[0] does not include a fil...Steve Dower2022-11-181-1/+10
* GH-98686: Get rid of BINARY_OP_GENERIC and COMPARE_OP_GENERIC (GH-99399)Brandt Bucher2022-11-171-2/+0
* gh-99377: Revert audit events for thread state creation and free, because the...Steve Dower2022-11-171-8/+0
* gh-99370: Prefer LIBDIR from sysconfig when locating libpython for test (GH-9...Steve Dower2022-11-161-1/+3
* gh-93649: Split watcher API tests from _testcapimodule.c (#99532)Erlend E. Aasland2022-11-162-330/+340
* gh-99377: Add audit events for thread creation and clear (GH-99378)Steve Dower2022-11-162-0/+67