index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-124835: `tomllib.loads`: Raise TypeError not AttributeError. Improve messa...
Taneli Hukkinen
2024-10-02
1
-0/+9
*
gh-66436: Improved prog default value for argparse.ArgumentParser (GH-124799)
Serhiy Storchaka
2024-10-01
2
-12/+108
*
gh-116750: Add clear_tool_id function to unregister events and callbacks (#12...
Tian Gao
2024-10-01
1
-0/+41
*
gh-124296: Remove private dictionary version tag (PEP 699) (#124472)
Sam Gross
2024-10-01
2
-226/+0
*
gh-124842: Fix test.support.import_helper.make_legacy_pyc() (GH-124843)
Serhiy Storchaka
2024-10-01
1
-2/+2
*
gh-124594: Create and reuse the same context for the entire asyncio REPL sess...
Bartosz Sławecki
2024-10-01
1
-0/+37
*
gh-118974: Add `decorator` argument to `make_dataclass` (gh-122723)
Victorien
2024-10-01
1
-0/+17
*
gh-124309: Revert eager task factory fix to prevent breaking downstream (#124...
Peter Bierma
2024-10-01
2
-99/+4
*
gh-115142: Skip some test cases in ``Lib/test/test_compile`` if ``_testintern...
Kirill Podoprigora
2024-09-30
1
-1/+6
*
gh-124613, regrtest: Detect JIT in build info (#124793)
Victor Stinner
2024-09-30
1
-4/+53
*
gh-124613: Don't run perf tests in JIT builds (#124792)
Pablo Galindo Salgado
2024-09-30
1
-2/+14
*
gh-124722: Fix leak in `test_detach_materialized_dict_no_memory` (GH-124769)
sobolevn
2024-09-30
1
-14/+30
*
gh-124400: Use the normal command path for breakpoint commands (#124401)
Tian Gao
2024-09-29
1
-0/+48
*
gh-111495: Add tests for `PyCodec_*` C API (#123343)
Bénédikt Tran
2024-09-29
1
-2/+295
*
gh-58573: Fix conflicts between abbreviated long options in the parent parser...
Serhiy Storchaka
2024-09-29
1
-0/+22
*
gh-116850: Fix argparse for namespaces with not directly writable dict (GH-12...
Serhiy Storchaka
2024-09-29
1
-0/+12
*
gh-61181: Fix support of choices with string value in argparse (GH-124578)
Serhiy Storchaka
2024-09-29
1
-5/+5
*
gh-53834: Fix support of arguments with choices in argparse (GH-124495)
Serhiy Storchaka
2024-09-29
1
-8/+8
*
gh-124345: Support abbreviated single-dash long options with = in argparse (G...
Serhiy Storchaka
2024-09-29
1
-1/+10
*
gh-80259: Fix conflict between type and default=SUPPRESS in argparse (GH-124519)
Serhiy Storchaka
2024-09-29
1
-7/+13
*
gh-104860: Fix allow_abbrev=False for single-dash long options (GH-124340)
Serhiy Storchaka
2024-09-29
1
-0/+17
*
GH-124639: add back loop param to staggered_race (#124700)
Kumar Aditya
2024-09-29
1
-0/+19
*
gh-124665: Add `_PyCodec_UnregisterError` and `_codecs._unregister_error` (#1...
Bénédikt Tran
2024-09-29
1
-1/+26
*
gh-124442: make `__static_attributes__` deterministic by sorting (#124492)
Kira
2024-09-28
1
-0/+17
*
gh-123339: Fix cases of inconsistency of __module__ and __firstlineno__ in cl...
Serhiy Storchaka
2024-09-28
4
-3/+85
*
gh-107954: Fix configuration type for the perf profiler (#124636)
Pablo Galindo Salgado
2024-09-27
2
-6/+9
*
GH-124547: Clear instance dictionary if memory error occurs during object dea...
Mark Shannon
2024-09-27
1
-0/+15
*
gh-124682: Disable test that is prone to intermittent failure on iOS. (#124683)
Russell Keith-Magee
2024-09-27
1
-4/+5
*
gh-113878: Add `doc` parameter to `dataclasses.field` (gh-114051)
sobolevn
2024-09-27
2
-3/+30
*
gh-123017: Add Android to the list of platforms where `strftime` doesn't supp...
Malcolm Smith
2024-09-27
1
-2/+1
*
gh-119180: No longer set `__annotations__` in `__main__` (#124634)
Jelle Zijlstra
2024-09-27
2
-2/+1
*
gh-124176: Add special support for dataclasses to `create_autospec` (#124429)
sobolevn
2024-09-27
1
-0/+72
*
gh-86673: Harden `test_ttk.test_element_create_image` (#123335)
Erlend E. Aasland
2024-09-27
1
-4/+4
*
gh-84559: Change the multiprocessing start method default to `forkserver` (GH...
Gregory P. Smith
2024-09-26
2
-6/+28
*
gh-89683: add tests for `deepcopy` on frozen dataclasses (gh-123098)
Bénédikt Tran
2024-09-26
1
-0/+43
*
gh-119180: Rename SOURCE format to STRING (#124620)
Jelle Zijlstra
2024-09-26
4
-120/+93
*
gh-124498: Fix `TypeAliasType` not to be generic, when `type_params=()` (#124...
sobolevn
2024-09-26
1
-0/+13
*
gh-124538: Fix crash when using `gc.get_referents` on an untracked capsule ob...
Peter Bierma
2024-09-26
1
-0/+18
*
gh-124402: Speed up test_free_threading and test_super (#124491)
Victor Stinner
2024-09-26
4
-53/+41
*
gh-120284: Enhance `asyncio.run` to accept awaitable objects (#120566)
Ron Frederick
2024-09-26
1
-10/+19
*
gh-124309: Modernize the `staggered_race` implementation to support eager tas...
Peter Bierma
2024-09-26
2
-4/+80
*
gh-119127: functools.partial placeholders (gh-119827)
dgpb
2024-09-26
2
-2/+175
*
Add "annotate" SET_FUNCTION_ATTRIBUTE bit to dis. (#124566)
larryhastings
2024-09-26
1
-0/+18
*
gh-124412: Add helpers for converting annotations to source format (#124551)
Jelle Zijlstra
2024-09-26
1
-4/+41
*
gh-119180: Disallow instantiation of ConstEvaluator objects (#124561)
Jelle Zijlstra
2024-09-25
1
-0/+11
*
gh-119180: Make FORWARDREF format look at __annotations__ first (#124479)
Jelle Zijlstra
2024-09-25
1
-4/+84
*
gh-41431: Add `datetime.time.strptime()` and `datetime.date.strptime()` (#120...
Nice Zombies
2024-09-25
1
-3/+155
*
gh-102450: Add ISO-8601 alternative for midnight to `fromisoformat()` calls. ...
TizzySaurus
2024-09-25
1
-1/+10
*
gh-119400: make_ssl_certs: update reference test data automatically, pass in...
Alexander Kanavin
2024-09-25
5
-72/+70
*
gh-119180: Avoid going through AST and eval() when possible in annotationlib ...
Jelle Zijlstra
2024-09-25
1
-1/+36
[next]