summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* gh-124720: Update "Using Python on a Mac" document (#124721)Ned Deily2024-09-291-0/+2
* gh-58573: Fix conflicts between abbreviated long options in the parent parser...Serhiy Storchaka2024-09-291-0/+2
* gh-116850: Fix argparse for namespaces with not directly writable dict (GH-12...Serhiy Storchaka2024-09-291-0/+2
* gh-61181: Fix support of choices with string value in argparse (GH-124578)Serhiy Storchaka2024-09-291-0/+2
* gh-53834: Fix support of arguments with choices in argparse (GH-124495)Serhiy Storchaka2024-09-291-0/+4
* gh-124345: Support abbreviated single-dash long options with = in argparse (G...Serhiy Storchaka2024-09-291-0/+2
* gh-80259: Fix conflict between type and default=SUPPRESS in argparse (GH-124519)Serhiy Storchaka2024-09-291-0/+2
* gh-104860: Fix allow_abbrev=False for single-dash long options (GH-124340)Serhiy Storchaka2024-09-291-0/+2
* gh-124442: make `__static_attributes__` deterministic by sorting (#124492)Kira2024-09-281-0/+2
* gh-123339: Fix cases of inconsistency of __module__ and __firstlineno__ in cl...Serhiy Storchaka2024-09-282-0/+7
* GH-124547: Clear instance dictionary if memory error occurs during object dea...Mark Shannon2024-09-271-0/+3
* gh-124457: Remove coverity from CPython repo (GH-124460)Mariatta2024-09-274-202/+2
* gh-124609: Fix _Py_ThreadId for Windows builds using MinGW (#124663)Tony Roberts2024-09-272-0/+2
* gh-113878: Add `doc` parameter to `dataclasses.field` (gh-114051)sobolevn2024-09-271-0/+9
* gh-123017: Add Android to the list of platforms where `strftime` doesn't supp...Malcolm Smith2024-09-271-0/+2
* gh-119180: No longer set `__annotations__` in `__main__` (#124634)Jelle Zijlstra2024-09-271-0/+2
* gh-124176: Add special support for dataclasses to `create_autospec` (#124429)sobolevn2024-09-271-0/+4
* gh-116510: Fix crash during sub-interpreter shutdown (gh-124645)Neil Schemenauer2024-09-271-0/+3
* gh-116510: Fix crash due to shared immortal interned strings. (gh-124646)Neil Schemenauer2024-09-271-0/+5
* GH-123516: Improve JIT memory consumption by invalidating cold executors (GH-...Savannah Ostrowski2024-09-271-0/+2
* gh-84559: Change the multiprocessing start method default to `forkserver` (GH...Gregory P. Smith2024-09-261-0/+5
* gh-124498: Fix `TypeAliasType` not to be generic, when `type_params=()` (#124...sobolevn2024-09-261-0/+2
* gh-124538: Fix crash when using `gc.get_referents` on an untracked capsule ob...Peter Bierma2024-09-261-0/+1
* gh-120284: Enhance `asyncio.run` to accept awaitable objects (#120566)Ron Frederick2024-09-261-0/+2
* gh-124309: Modernize the `staggered_race` implementation to support eager tas...Peter Bierma2024-09-261-0/+1
* gh-119127: functools.partial placeholders (gh-119827)dgpb2024-09-261-0/+2
* gh-41431: Add `datetime.time.strptime()` and `datetime.date.strptime()` (#120...Nice Zombies2024-09-251-0/+2
* gh-102450: Add ISO-8601 alternative for midnight to `fromisoformat()` calls. ...TizzySaurus2024-09-252-0/+3
* gh-121277: Allow `.. versionadded:: next` in docs (GH-121278)Petr Viktorin2024-09-251-0/+2
* gh-119400: make_ssl_certs: update reference test data automatically, pass in...Alexander Kanavin2024-09-251-0/+2
* gh-124448: Update Windows builds to use Tcl/Tk 8.6.15 (GH-124449)Zachary Ware2024-09-253-9/+9
* gh-123884 Tee of tee was not producing n independent iterators (gh-124490)Raymond Hettinger2024-09-251-0/+4
* gh-124378: Update test_ttk for Tcl/Tk 8.6.15 (GH-124542)Zachary Ware2024-09-251-0/+1
* gh-124513: Check args in framelocalsproxy_new() (#124515)Victor Stinner2024-09-251-0/+2
* gh-101100: Add a table of class attributes to the "Custom classes" section of...Alex Waygood2024-09-251-1/+1
* gh-123856: Fix PyREPL failure when a keyboard interrupt is triggered after us...Emily Morehouse2024-09-251-0/+2
* gh-123756: Disable restart command if pdb is in inline mode (#123757)Tian Gao2024-09-251-0/+1
* gh-124285: Fix bug where bool() is called multiple times for the same part of...Irit Katriel2024-09-251-0/+2
* gh-123014: Disable pidfd API on older Android versions (#124458)Malcolm Smith2024-09-251-0/+3
* gh-90562: Support zero argument super with dataclasses when slots=True (gh-12...Eric V. Smith2024-09-251-0/+3
* bpo-44864: Do not translate user-provided strings in ArgumentParser.add_subpa...Jérémie Detrey2024-09-241-0/+1
* gh-120254: Add a `commands` argument to `pdb.set_trace` (#120255)Tian Gao2024-09-241-0/+1
* gh-124448: Update bundled Tcl/Tk in macOS installer to 8.6.15. (#124453)Ned Deily2024-09-241-0/+1
* gh-113008: Correct argparse usage output for required, mutually exclusive gr...Payton2024-09-241-0/+1
* gh-59317: Improve parsing optional positional arguments in argparse (GH-124303)Serhiy Storchaka2024-09-241-0/+2
* gh-123978: Remove broken time.thread_time() on NetBSD (GH-124116)Serhiy Storchaka2024-09-241-0/+1
* gh-124188: Fix PyErr_ProgramTextObject() (GH-124189)Serhiy Storchaka2024-09-241-0/+2
* gh-72795: Make positional arguments with nargs='*' or REMAINDER non-required ...Serhiy Storchaka2024-09-241-0/+4
* gh-53780: Ignore the first "--" (double dash) between an option and command i...Serhiy Storchaka2024-09-241-0/+1
* gh-63143: Fix parsing mutually exclusive arguments in argparse (GH-124307)Serhiy Storchaka2024-09-241-0/+3