summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-124682: Disable test that is prone to intermittent failure on iOS. (#124683)Russell Keith-Magee2024-09-271-4/+5
* Improve accuracy of kde() invcdf estimates (gh-124637)Raymond Hettinger2024-09-271-1/+7
* gh-113878: Add `doc` parameter to `dataclasses.field` (gh-114051)sobolevn2024-09-273-20/+67
* 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-272-6/+88
* 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-263-19/+41
* gh-124628: Pyrepl inputs on Windows shouldn't always be blocking reads (#124629)Dino Viehland2024-09-261-9/+21
* 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-267-154/+139
* Cleanup unnecessary curframe_locals usage (#124369)Tian Gao2024-09-261-19/+11
* gh-124498: Fix `TypeAliasType` not to be generic, when `type_params=()` (#124...sobolevn2024-09-261-0/+13
* gh-124234: Improve docs for `Mock.reset_mock` (#124237)sobolevn2024-09-261-2/+4
* 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-262-14/+32
* gh-124309: Modernize the `staggered_race` implementation to support eager tas...Peter Bierma2024-09-264-66/+99
* gh-119127: functools.partial placeholders (gh-119827)dgpb2024-09-264-63/+330
* Add "annotate" SET_FUNCTION_ATTRIBUTE bit to dis. (#124566)larryhastings2024-09-262-1/+19
* gh-124412: Add helpers for converting annotations to source format (#124551)Jelle Zijlstra2024-09-264-42/+77
* 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-252-26/+143
* gh-41431: Add `datetime.time.strptime()` and `datetime.date.strptime()` (#120...Nice Zombies2024-09-253-15/+203
* gh-102450: Add ISO-8601 alternative for midnight to `fromisoformat()` calls. ...TizzySaurus2024-09-252-4/+41
* 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-252-28/+88
* gh-123884 Tee of tee was not producing n independent iterators (gh-124490)Raymond Hettinger2024-09-251-36/+48
* gh-124378: Update test_ttk for Tcl/Tk 8.6.15 (GH-124542)Zachary Ware2024-09-251-2/+15
* gh-124513: Check args in framelocalsproxy_new() (#124515)Victor Stinner2024-09-251-0/+21
* gh-123856: Fix PyREPL failure when a keyboard interrupt is triggered after us...Emily Morehouse2024-09-252-90/+113
* gh-123756: Disable restart command if pdb is in inline mode (#123757)Tian Gao2024-09-252-3/+30
* gh-124285: Fix bug where bool() is called multiple times for the same part of...Irit Katriel2024-09-253-7/+78
* gh-116622: Make test_unzip_zipfile recognize Android error message format (#1...Malcolm Smith2024-09-251-1/+4
* gh-90562: Support zero argument super with dataclasses when slots=True (gh-12...Eric V. Smith2024-09-252-9/+174
* dataclasses: Avoid using private class (#124465)Jelle Zijlstra2024-09-241-4/+1
* gh-124402: Require cpu resource in test_super slow method (#124434)Victor Stinner2024-09-241-0/+6
* gh-86009: Fix solaris detection in `_USE_CP_SENDFILE` check (GH-124289)Jakub Kulík2024-09-241-1/+1
* bpo-44864: Do not translate user-provided strings in ArgumentParser.add_subpa...Jérémie Detrey2024-09-241-2/+2
* gh-120254: Add a `commands` argument to `pdb.set_trace` (#120255)Tian Gao2024-09-243-6/+22
* gh-124405: Fix `NameError` in `openpty` (#124406)sobolevn2024-09-241-2/+2
* gh-124402: Require cpu resource in test_free_threading (#124438)Victor Stinner2024-09-243-0/+8
* gh-113008: Correct argparse usage output for required, mutually exclusive gr...Payton2024-09-242-2/+25
* gh-59317: Improve parsing optional positional arguments in argparse (GH-124303)Serhiy Storchaka2024-09-242-42/+100
* gh-124188: Fix PyErr_ProgramTextObject() (GH-124189)Serhiy Storchaka2024-09-244-82/+270
* gh-72795: Make positional arguments with nargs='*' or REMAINDER non-required ...Serhiy Storchaka2024-09-242-8/+28
* gh-53780: Ignore the first "--" (double dash) between an option and command i...Serhiy Storchaka2024-09-242-4/+22
* gh-63143: Fix parsing mutually exclusive arguments in argparse (GH-124307)Serhiy Storchaka2024-09-242-9/+117
* gh-124127: Make Py_REFCNT() opaque in limited C API 3.14 (#124128)Victor Stinner2024-09-241-0/+1
* gh-124130: Increase test coverage for \b and \B in regular expressions (GH-12...Serhiy Storchaka2024-09-241-7/+113