summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-124835: `tomllib.loads`: Raise TypeError not AttributeError. Improve messa...Taneli Hukkinen2024-10-021-0/+9
* gh-66436: Improved prog default value for argparse.ArgumentParser (GH-124799)Serhiy Storchaka2024-10-012-12/+108
* gh-116750: Add clear_tool_id function to unregister events and callbacks (#12...Tian Gao2024-10-011-0/+41
* gh-124296: Remove private dictionary version tag (PEP 699) (#124472)Sam Gross2024-10-012-226/+0
* gh-124842: Fix test.support.import_helper.make_legacy_pyc() (GH-124843)Serhiy Storchaka2024-10-011-2/+2
* gh-124594: Create and reuse the same context for the entire asyncio REPL sess...Bartosz Sławecki2024-10-011-0/+37
* gh-118974: Add `decorator` argument to `make_dataclass` (gh-122723)Victorien2024-10-011-0/+17
* gh-124309: Revert eager task factory fix to prevent breaking downstream (#124...Peter Bierma2024-10-012-99/+4
* gh-115142: Skip some test cases in ``Lib/test/test_compile`` if ``_testintern...Kirill Podoprigora2024-09-301-1/+6
* gh-124613, regrtest: Detect JIT in build info (#124793)Victor Stinner2024-09-301-4/+53
* gh-124613: Don't run perf tests in JIT builds (#124792)Pablo Galindo Salgado2024-09-301-2/+14
* gh-124722: Fix leak in `test_detach_materialized_dict_no_memory` (GH-124769)sobolevn2024-09-301-14/+30
* gh-124400: Use the normal command path for breakpoint commands (#124401)Tian Gao2024-09-291-0/+48
* gh-111495: Add tests for `PyCodec_*` C API (#123343)Bénédikt Tran2024-09-291-2/+295
* gh-58573: Fix conflicts between abbreviated long options in the parent parser...Serhiy Storchaka2024-09-291-0/+22
* gh-116850: Fix argparse for namespaces with not directly writable dict (GH-12...Serhiy Storchaka2024-09-291-0/+12
* gh-61181: Fix support of choices with string value in argparse (GH-124578)Serhiy Storchaka2024-09-291-5/+5
* gh-53834: Fix support of arguments with choices in argparse (GH-124495)Serhiy Storchaka2024-09-291-8/+8
* gh-124345: Support abbreviated single-dash long options with = in argparse (G...Serhiy Storchaka2024-09-291-1/+10
* gh-80259: Fix conflict between type and default=SUPPRESS in argparse (GH-124519)Serhiy Storchaka2024-09-291-7/+13
* gh-104860: Fix allow_abbrev=False for single-dash long options (GH-124340)Serhiy Storchaka2024-09-291-0/+17
* GH-124639: add back loop param to staggered_race (#124700)Kumar Aditya2024-09-291-0/+19
* gh-124665: Add `_PyCodec_UnregisterError` and `_codecs._unregister_error` (#1...Bénédikt Tran2024-09-291-1/+26
* gh-124442: make `__static_attributes__` deterministic by sorting (#124492)Kira2024-09-281-0/+17
* gh-123339: Fix cases of inconsistency of __module__ and __firstlineno__ in cl...Serhiy Storchaka2024-09-284-3/+85
* gh-107954: Fix configuration type for the perf profiler (#124636)Pablo Galindo Salgado2024-09-272-6/+9
* GH-124547: Clear instance dictionary if memory error occurs during object dea...Mark Shannon2024-09-271-0/+15
* gh-124682: Disable test that is prone to intermittent failure on iOS. (#124683)Russell Keith-Magee2024-09-271-4/+5
* gh-113878: Add `doc` parameter to `dataclasses.field` (gh-114051)sobolevn2024-09-272-3/+30
* gh-123017: Add Android to the list of platforms where `strftime` doesn't supp...Malcolm Smith2024-09-271-2/+1
* gh-119180: No longer set `__annotations__` in `__main__` (#124634)Jelle Zijlstra2024-09-272-2/+1
* gh-124176: Add special support for dataclasses to `create_autospec` (#124429)sobolevn2024-09-271-0/+72
* gh-86673: Harden `test_ttk.test_element_create_image` (#123335)Erlend E. Aasland2024-09-271-4/+4
* gh-84559: Change the multiprocessing start method default to `forkserver` (GH...Gregory P. Smith2024-09-262-6/+28
* gh-89683: add tests for `deepcopy` on frozen dataclasses (gh-123098)Bénédikt Tran2024-09-261-0/+43
* gh-119180: Rename SOURCE format to STRING (#124620)Jelle Zijlstra2024-09-264-120/+93
* gh-124498: Fix `TypeAliasType` not to be generic, when `type_params=()` (#124...sobolevn2024-09-261-0/+13
* gh-124538: Fix crash when using `gc.get_referents` on an untracked capsule ob...Peter Bierma2024-09-261-0/+18
* gh-124402: Speed up test_free_threading and test_super (#124491)Victor Stinner2024-09-264-53/+41
* gh-120284: Enhance `asyncio.run` to accept awaitable objects (#120566)Ron Frederick2024-09-261-10/+19
* gh-124309: Modernize the `staggered_race` implementation to support eager tas...Peter Bierma2024-09-262-4/+80
* gh-119127: functools.partial placeholders (gh-119827)dgpb2024-09-262-2/+175
* Add "annotate" SET_FUNCTION_ATTRIBUTE bit to dis. (#124566)larryhastings2024-09-261-0/+18
* gh-124412: Add helpers for converting annotations to source format (#124551)Jelle Zijlstra2024-09-261-4/+41
* gh-119180: Disallow instantiation of ConstEvaluator objects (#124561)Jelle Zijlstra2024-09-251-0/+11
* gh-119180: Make FORWARDREF format look at __annotations__ first (#124479)Jelle Zijlstra2024-09-251-4/+84
* gh-41431: Add `datetime.time.strptime()` and `datetime.date.strptime()` (#120...Nice Zombies2024-09-251-3/+155
* gh-102450: Add ISO-8601 alternative for midnight to `fromisoformat()` calls. ...TizzySaurus2024-09-251-1/+10
* gh-119400: make_ssl_certs: update reference test data automatically, pass in...Alexander Kanavin2024-09-255-72/+70
* gh-119180: Avoid going through AST and eval() when possible in annotationlib ...Jelle Zijlstra2024-09-251-1/+36