summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* GH-101673: Fix pdb bug where local variable changes are lost after longlist (...gaogaotiantian2023-03-121-0/+29
* gh-101821: Test coverage for `ast.main` function (#101822)Nikita Sobolev2023-03-111-0/+20
* gh-79940: skip `TestGetAsyncGenState` on wasm as it requires working sockets ...Thomas Krennwallner2023-03-111-1/+3
* gh-79940: add introspection API for asynchronous generators to `inspect` modu...Thomas Krennwallner2023-03-111-0/+107
* gh-102433: Add tests for how classes with properties interact with `isinstanc...Alex Waygood2023-03-111-0/+88
* GH-90997: Shrink the LOAD_GLOBAL caches (#102569)Brandt Bucher2023-03-111-146/+146
* gh-102103: add `module` argument to `dataclasses.make_dataclass` (#102104)Nikita Sobolev2023-03-111-0/+39
* gh-102578: Optimise setting and deleting mutable attributes on non-dataclass ...Xuehai Pan2023-03-111-0/+44
* GH-80486: Fix handling of NTFS alternate data streams in pathlib (GH-102454)Barney Gale2023-03-101-1/+27
* GH-102537: Handle check for PYTHONTZPATH failing in zoneinfo test (GH-102538)Paul Ganssle2023-03-101-1/+8
* gh-102519: Add os.listdrives, os.listvolumes and os.listmounts on Windows (GH...Steve Dower2023-03-101-0/+43
* gh-102378: don't bother stripping `/` from __text_signature__ (#102379)David Hewitt2023-03-091-16/+7
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-3/+5
* gh-102515: Remove unused imports in the `Lib/` directory (#102516)Alex Waygood2023-03-0828-37/+5
* Remove or update bitbucket links (GH-101963)sblondon2023-03-081-1/+1
* GH-102397: Fix segfault from race condition in signal handling (#102399)Kumar Aditya2023-03-081-0/+15
* gh-102381: don't call watcher callback with dead object (#102382)Carl Meyer2023-03-081-2/+50
* gh-102493: fix normalization in PyErr_SetObject (#102502)Irit Katriel2023-03-071-0/+28
* GH-101362: Optimise PurePath(PurePath(...)) (GH-101667)Barney Gale2023-03-051-0/+27
* gh-102444: Fix minor bugs in `test_typing` highlighted by pyflakes (#102445)Alex Waygood2023-03-051-19/+2
* GH-102341: Improve the test function for pow (#102342)Partha P. Mukherjee2023-03-051-6/+5
* Fix unused classes in a typing test (GH-102437)JosephSBoyle2023-03-051-2/+2
* gh-101979: argparse: fix a bug where parentheses in metavar argument of add_a...Yeojin Kim2023-03-051-0/+22
* gh-102356: Add thrashcan macros to filter object dealloc (#102426)Marta Gómez Macías2023-03-051-0/+10
* GH-97546: fix flaky asyncio `test_wait_for_race_condition` test (#102421)Kumar Aditya2023-03-051-1/+1
* gh-63301: Set exit code when tabnanny CLI exits on error (#7699)Jaysinh Shukla2023-03-041-11/+19
* gh-102179: Fix `os.dup2` error reporting for negative fds (#102180)Alexey Izbyshev2023-03-041-0/+20
* gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...Raj2023-03-041-0/+25
* gh-102324: Improve tests of `typing.override` (#102325)Nikita Sobolev2023-03-031-4/+95
* gh-95672: Update memory_watchdog to use test.support.get_pagesize (gh-102365)Hyunkyun Moon2023-03-021-9/+2
* gh-102088 Optimize iter_index itertools recipe (GH-102360)Stefan Pochmann2023-03-021-0/+3
* gh-95672 skip fcntl when pipesize is smaller than pagesize (gh-102163)Hyunkyun Moon2023-03-013-3/+19
* gh-87092: Make jump target label equal to the offset of the target in the ins...Irit Katriel2023-02-283-57/+47
* gh-101101: Unstable C API tier (PEP 689) (GH-101102)Petr Viktorin2023-02-281-3/+3
* gh-101561: Add typing.override decorator (#101564)Steven Troxler2023-02-271-0/+38
* gh-101773: Optimize creation of Fractions in private methods (#101780)Sergey B Kirpichev2023-02-272-1/+2
* gh-102251: Updates to test_imp Toward Fixing Some Refleaks (gh-102254)Eric Snow2023-02-271-282/+828
* gh-102250: Fix double-decref in COMPARE_AND_BRANCH error case (GH-102287)Dennis Sweeney2023-02-271-0/+20
* gh-102252: Improve coverage of test_bool.py (#102253)Eclips42023-02-251-0/+6
* gh-102209: Sync with zipp 3.15 moving complexity tests into dedicated module ...Jason R. Coombs2023-02-256-50/+81
* gh-95675: fix uid and gid at test_add_dir_getmember (gh-102207)SKO2023-02-251-6/+7
* gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int...Ionite2023-02-241-0/+81
* gh-102209: Disable the timeout in test_implied_dirs_performance. (#102225)Jason R. Coombs2023-02-241-1/+2
* gh-102158: Add tests for `softkwlist` (#102159)Eclips42023-02-241-0/+18
* Fix deadlock on shutdown if test_current_{exception,frames} fails (#102019)Jacob Bower2023-02-231-73/+75
* gh-93649: Split exception tests from _testcapimodule.c (GH-102173)Erlend E. Aasland2023-02-232-128/+148
* bpo-23224: Fix segfaults and multiple leaks in the lzma and bz2 modules (GH-7...Zackery Spytz2023-02-232-0/+8
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-232-1/+6
* gh-87634: remove locking from functools.cached_property (GH-101890)Carl Meyer2023-02-231-36/+0
* Few coverage nitpicks for the cmath module (#102067)Sergey B Kirpichev2023-02-222-0/+11