summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* gh-58933: Make pdb return to caller frame correctly when f_trace is not set (...Tian Gao2024-05-131-0/+1
* gh-87106: Fix inspect.signature.bind() handling of positional-only arguments ...Jacob Walls2024-05-131-0/+3
* GH-118844: Fix build failures when combining --disable-gil with --enable-expe...Savannah Ostrowski2024-05-111-0/+1
* gh-118921: Add `copy()` method for `FrameLocalsProxy` (#118923)Tian Gao2024-05-101-0/+1
* gh-118924: Remove `sqlite3.version` and `sqlite3.version_info` (#118925)Hugo van Kemenade2024-05-102-1/+3
* gh-118771: Ensure names defined in optimizer.h start with Py/_Py (GH-118825)Petr Viktorin2024-05-101-0/+3
* GH-78707: Drop deprecated `pathlib.PurePath.[is_]relative_to()` arguments (#1...Barney Gale2024-05-101-0/+3
* gh-118895: Call PyType_Ready() on typing.NoDefault (#118897)Jelle Zijlstra2024-05-101-0/+2
* gh-117657: Fix data races reported by TSAN on `interp->threads.main` (#118865)mpage2024-05-101-0/+1
* gh-118789: Restore hidden `_PyWeakref_ClearRef` (#118797)Sam Gross2024-05-101-0/+2
* gh-118209: Add Windows structured exception handling to mmap module (GH-118213)Dobatymo2024-05-101-0/+2
* gh-118851: Default ctx arguments to AST constructors to Load() (#118854)Jelle Zijlstra2024-05-091-0/+2
* gh-116984: Make mimalloc header includes relative to the current file (#118808)Sam Gross2024-05-091-0/+3
* gh-118561: Fix crash involving list.extend in free-threaded build (#118723)Sam Gross2024-05-091-0/+2
* gh-118773: Use language-invariant SDDL string instead of aliases for ACLs. (G...Steve Dower2024-05-091-0/+2
* gh-118767: Improve tests and docs for bool(NotImplemented) (#118813)Jelle Zijlstra2024-05-091-1/+1
* gh-103956: Fix `trace` output in case of missing source line (GH-103958)Radislav Chugunov2024-05-091-0/+1
* gh-118805: Remove type, choices, metavar params of `BooleanOptionalAction` (#...Nikita Sobolev2024-05-091-0/+3
* gh-118798: Remove deprecated isdst parameter from `email.utils.localtime` (#1...Hugo van Kemenade2024-05-091-0/+2
* gh-118033: Fix `__weakref__` not set for generic dataclasses (#118099)Nikita Sobolev2024-05-091-0/+2
* GH-101588: Remove deprecated pickle/copy/deepcopy from itertools (gh-118816)Raymond Hettinger2024-05-091-0/+2
* gh-118803: Remove `ByteString` from `typing` and `collections.abc` (#118804)Nikita Sobolev2024-05-081-0/+3
* Format None, True, False and NotImplemented as literals (GH-118758)Serhiy Storchaka2024-05-0810-22/+24
* gh-118767: Make bool(NotImplemented) raise TypeError (#118775)Jelle Zijlstra2024-05-081-0/+2
* gh-118772: Allow TypeVars without a default to follow those with a default wh...Jelle Zijlstra2024-05-081-0/+2
* gh-118486: Update docs for CVE-2024-4030 reference (GH-118737)Steve Dower2024-05-081-0/+4
* Python 3.13.0b1v3.13.0b1Thomas Wouters2024-05-08158-381/+1670
* gh-118734: Fixes Windows build when Use_TIER2 is unspecified (#118735)Steve Dower2024-05-071-0/+2
* gh-118660: Add second type parameter to (Async)ContextManager (#118681)Jelle Zijlstra2024-05-071-0/+4
* gh-66410: Do not stringify arguments of Tkinter callback (GH-98592)Serhiy Storchaka2024-05-071-0/+7
* gh-118090: Improve error message for empty type param brackets (GH-118091)Nikita Sobolev2024-05-071-0/+1
* gh-118518: Rename `PYTHONPERFJITSUPPORT` and `-X perfjit` with underscores (#...Hugo van Kemenade2024-05-071-2/+2
* gh-118418: Deprecate failing to pass a value to the *type_params* parameter o...Alex Waygood2024-05-071-0/+6
* gh-118650: Exclude `_repr_*` methods from Enum's _sunder_ reservation (GH-118...chrysn2024-05-071-0/+2
* gh-109975: Update 'What's New in Python 3.13' for beta (#118694)Hugo van Kemenade2024-05-075-7/+9
* gh-118314: Fix padding edge case in binascii.a2b_base64 strict mode (GH-118320)Youfu Zhang2024-05-071-0/+1
* gh-62090: Simplify argparse usage formatting (GH-105039)Ali Hamdan2024-05-071-0/+2
* gh-118107: Fix zipimporter ZIP64 handling. (GH-118108)John Sirois2024-05-071-0/+2
* gh-118414: Fix assertion in YIELD_VALUE when tracing lines or instrs (#118683)Tian Gao2024-05-071-0/+1
* gh-117953: Always Run Extension Init Func in Main Interpreter First (gh-118157)Eric Snow2024-05-071-0/+8
* gh-116322: Enable the GIL while loading C extension modules (#118560)Brett Simmers2024-05-071-0/+1
* gh-110209: Add __class_getitem__ for generator and coroutine (#110212)James Hilton-Balfe2024-05-071-0/+1
* gh-118473: Fix set_asyncgen_hooks not to be partially set when arguments are ...Jeong, YunWon2024-05-071-0/+1
* gh-117486: Improve behavior for user-defined AST subclasses (#118212)Jelle Zijlstra2024-05-061-0/+4
* gh-118647: Add defaults to typing.Generator and typing.AsyncGenerator (#118648)Jelle Zijlstra2024-05-061-0/+2
* gh-115119: Default to --with-system-libmpdec=yes (#118539)Erlend E. Aasland2024-05-061-0/+2
* GH-83151: Add closure support to pdb (GH-111094)Tian Gao2024-05-061-0/+3
* gh-118362: Fix thread safety around lookups from the type cache in the face o...Dino Viehland2024-05-061-0/+2
* GH-117714: implement athrow().close() and asend().close() using throw (GH-117...Thomas Grainger2024-05-061-0/+1
* gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH...Petr Viktorin2024-05-061-1/+1