summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-122943: Rework support of var-positional parameter in Argument Clinic (GH-...Serhiy Storchaka2024-11-072-74/+237
* gh-126298: Don't deduplicate slice constants based on equality (#126398)Michael Droettboom2024-11-071-19/+59
* GH-126222: Fix `_PyUop_num_popped` (GH-126507)Mark Shannon2024-11-071-0/+8
* gh-126500: test_ssl: Don't stop ThreadedEchoServer on OSError in ConnectionHa...Petr Viktorin2024-11-071-5/+12
* gh-126499: test_ssl: Don't assume err.reason is a string (GH-126501)Petr Viktorin2024-11-071-1/+1
* gh-125679: multiprocessing Lock and RLock - fix invalid representation string...Duprat2024-11-072-2/+124
* Cleanup multiprocessing comment and unusual import error message (#126532)Gregory P. Smith2024-11-071-8/+7
* gh-125926: Fix urllib.parse.urljoin() for base URI with undefined authority (...Serhiy Storchaka2024-11-072-2/+74
* gh-125631: Enable setting persistent_id and persistent_load of pickler and un...Serhiy Storchaka2024-11-071-2/+80
* gh-126451: Register contextvars.Context to collections.abc.Mapping (#126452)Stephen Morton2024-11-062-0/+18
* gh-126489: Do not call persistent_id() for a persistent id in Python pickle (...Serhiy Storchaka2024-11-062-4/+11
* gh-115999: Move specializer test from test_dis to test_opcache (gh-126498)Donghee Na2024-11-062-45/+59
* gh-115999: Add free-threaded specialization for CONTAINS_OP (gh-126450)Donghee Na2024-11-061-0/+21
* gh-70764: inspect.getclosurevars now identifies global variables with LOAD_GL...blhsing2024-11-052-5/+22
* pathlib ABCs: defer path joining (#126409)Barney Gale2024-11-053-46/+43
* gh-126417: Register multiprocessing proxy types to an appropriate collections...Stephen Morton2024-11-052-1/+14
* gh-126366: Fix crash if `__iter__` raises an exception during `yield from` (#...Peter Bierma2024-11-051-0/+13
* gh-120057: Add os.reload_environ() function (#126268)Victor Stinner2024-11-052-19/+22
* gh-126303: Fix pickling and copying of os.sched_param objects (GH-126336)Serhiy Storchaka2024-11-051-0/+21
* GH-126363: Speed up pattern parsing in `pathlib.Path.glob()` (#126364)Barney Gale2024-11-041-14/+27
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-048-5/+281
* gh-119793: Add optional length-checking to `map()` (GH-120471)Nice Zombies2024-11-042-2/+107
* gh-109413: Add more type hints to `libregrtest` (#126352)sobolevn2024-11-0411-62/+70
* gh-126353: remove implicit creation of loop from `asyncio.get_event_loop` (#1...Kumar Aditya2024-11-044-54/+12
* gh-126357: Remove gettext import guards (GH-126358)Tomas R.2024-11-032-18/+4
* gh-104400: Add more tests to pygettext (GH-108173)Tomas R.2024-11-037-21/+362
* gh-113977, gh-120754: Remove unbounded reads from zipfile (GH-122101)Cody Maloney2024-11-031-3/+3
* gh-120754: Add a strace helper and test set of syscalls for open().read(), Ta...Cody Maloney2024-11-033-33/+328
* gh-126317: Simplify pickle code by using itertools.batched() (GH-126323)Lee Dong Wook2024-11-021-39/+22
* gh-125522: Remove bare except in test_zlib.test_flushes (gh-126321)simple-is-great2024-11-021-9/+5
* gh-126255: Ignore warning about JIT being deactivated when perf support is ac...mpage2024-11-012-4/+7
* gh-126220: Fix crash on calls to `_lsprof.Profiler` methods with 0 args (back...sobolevn2024-11-011-0/+16
* gh-120754: _io Ensure stat cache is cleared on fd change (#125166)Cody Maloney2024-11-011-0/+3
* gh-125916: Adapt functools.reduce() to Argument Clinic (#125999)Sergey B Kirpichev2024-11-011-2/+2
* GH-125413: pathlib ABCs: use `scandir()` to speed up `walk()` (#126262)Barney Gale2024-11-012-12/+14
* GH-125413: pathlib ABCs: use `scandir()` to speed up `glob()` (#126261)Barney Gale2024-11-013-25/+10
* gh-97850: remove ``find_loader`` and ``get_loader`` from ``pkgutil`` (#119656)Bénédikt Tran2024-11-013-140/+1
* gh-126211: Exclude preprocessor directives from statements containing escapin...mpage2024-11-011-0/+33
* gh-111495: improve test coverage of codecs C API (GH-126030)Bénédikt Tran2024-11-011-23/+115
* gh-125783: Add more tests to prevent regressions with the combination of ctyp...Jun Komoda2024-11-011-0/+65
* GH-125413: Add `pathlib.Path.scandir()` method (#126060)Barney Gale2024-11-013-11/+76
* gh-126156: Improve performance of creating `Morsel` objects (#126157)J. Nick Koston2024-10-311-2/+3
* gh-126223: Propagate unicode errors in `_interpreters.create()` (#126224)Peter Bierma2024-10-311-0/+3
* gh-90370: Argument Clinic: avoid temporary tuple creation for varargs (#126064)Sergey B Kirpichev2024-10-312-29/+23
* gh-126083: Fix a reference leak in `asyncio.Task` when reinitializing with ne...Nico-Posada2024-10-311-0/+22
* GH-126205: Fix conversion of UNC paths to file URIs (#126208)Barney Gale2024-10-302-13/+8
* gh-121267: Improve performance of tarfile (#121267) (#121269)Johan Förberg2024-10-301-8/+17
* gh-60712: Include the "object" type in the lists of documented types (GH-103036)Furkan Onder2024-10-301-0/+50
* gh-126068: Fix exceptions in the argparse module (GH-126069)Serhiy Storchaka2024-10-303-58/+67
* gh-126072: do not add `None` to `co_consts` if there is no docstring (GH-126101)Xuanteng Huang2024-10-307-51/+111