summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* gh-126139: Improve error message location for future statement with unknown f...Brian Schubert2024-10-292-6/+6
* gh-125588: Teach the python PEG generator the new f-string tokens (#125589)Pablo Galindo Salgado2024-10-291-0/+8
* gh-126146: Remove ``__cmp__`` method from tests (#126147)Kirill Podoprigora2024-10-292-8/+0
* GH-125866: Improve tests for `pathname2url()` and `url2pathname()` (#125993)Barney Gale2024-10-291-86/+77
* gh-126084: Fix venvwlauncher.exe to run pythonw.exe (GH-126088)Christian Ullrich2024-10-291-0/+21
* gh-118423: Add `INSTRUCTION_SIZE` macro to code generator (GH-125467)Tomas R.2024-10-291-0/+31
* gh-126105: Fix crash in `ast` module, when `._fields` is deleted (#126115)sobolevn2024-10-291-0/+17
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-2912-256/+315
* tomllib: Add a comment about implicit lru_cache bound (GH-126078)Taneli Hukkinen2024-10-291-0/+3
* Align functools.reduce() docstring with PEP-257 (#126045)Sergey B Kirpichev2024-10-291-6/+8
* gh-126014: Ignore `__pycache__`-only folders in makefile tests (#126066)sobolevn2024-10-291-1/+4
* gh-124295: Skip translation tests when pygettext is missing (GH-126051)Tomas R.2024-10-271-0/+2
* gh-125966: fix use-after-free on `fut->fut_callback0` due to an evil callback...Bénédikt Tran2024-10-271-0/+18
* gh-124295: Add translation tests for argparse (GH-124803)Tomas R.2024-10-272-0/+99
* gh-125984: fix use-after-free on `fut->fut_{callback,context}0` due to an evi...Bénédikt Tran2024-10-271-2/+71
* gh-126018: Avoid aborting due to unnecessary assert in `sys.audit` (#126020)devdanzin2024-10-272-0/+18
* gh-126012: Add `__class_getitem__` to `memoryview` (#126013)Brian Schubert2024-10-271-1/+1
* gh-125633: Add function `ispackage` to stdlib `inspect` (#125634)Zhikang Yan2024-10-272-6/+24
* Android: Update tests for newly-available functions affected by SELinux (#126...Malcolm Smith2024-10-273-2/+25
* gh-125666: Avoid PyREPL exiting when a null byte is in input (#125732)devdanzin2024-10-273-1/+16
* gh-125593: Use colors to highlight error locations in tracebacks from excepti...Bogdan Romanyuk2024-10-272-1/+44
* gh-125969: fix OOB in `future_schedule_callbacks` due to an evil `call_soon` ...Bénédikt Tran2024-10-251-0/+33
* gh-125783: Add tests to prevent regressions with the combination of `ctypes` ...Jun Komoda2024-10-251-0/+87
* GH-125789: fix `fut._callbacks` to always return a copy of callbacks (#125922)Kumar Aditya2024-10-251-0/+18
* gh-121654: Add PyType_Freeze() function (#122457)Victor Stinner2024-10-252-0/+67
* gh-123930: Correct test of attribute failure to account for iOS (#125959)Russell Keith-Magee2024-10-251-2/+6
* Fixed a few type mismatches in pdb (#125952)Tian Gao2024-10-251-4/+4