summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Fix typo in perf profiling docs (#112112)Ryuji Tsutsui2023-11-151-1/+1
* gh-108303: Delete `imp_dummy` test file (#112110)Nikita Sobolev2023-11-151-3/+0
* gh-111789: Use PyDict_GetItemRef() in Modules/_asynciomodule.c (GH-112072)Serhiy Storchaka2023-11-151-6/+2
* Docs: Add the time to the HTML last updated format (#110091)Adam Turner2023-11-151-3/+2
* gh-112062: Make `_struct` module thread-safe in `--disable-gil` builds (#112094)Radislav Chugunov2023-11-151-7/+6
* gh-111545: Test PyHash_GetFuncDef() function (#112098)Victor Stinner2023-11-159-1/+147
* gh-109538: Avoid RuntimeError when StreamWriter is deleted with closed loop (...DPR2023-11-153-5/+45
* gh-111995: Add getnameinfo extension flag (#111994)adder322023-11-152-0/+5
* gh-111545: Add Include/cpython/pyhash.h header file (#112063)Victor Stinner2023-11-155-13/+24
* gh-111942: Fix SystemError in the TextIOWrapper constructor (#112061)Serhiy Storchaka2023-11-143-5/+9
* gh-111906: Fix warnings during mimalloc build on FreeBSD (#111907)Furkan Onder2023-11-141-2/+2
* gh-111942: Fix crashes in TextIOWrapper.reconfigure() (GH-111976)Serhiy Storchaka2023-11-143-5/+122
* GH-111848: Convert remaining jumps to deopts into tier 2 code. (GH-112045)Mark Shannon2023-11-147-129/+184
* gh-111789: Simplify bytecodes.c by using PyDict_GetItemRef() (GH-111978)Serhiy Storchaka2023-11-143-140/+51
* gh-111262: Add PyDict_Pop() function (#112028)Victor Stinner2023-11-1415-73/+335
* gh-110944: Make pdb completion work for alias and convenience vars (GH-110945)Tian Gao2023-11-143-1/+39
* gh-111903: Add `@critical_section` directive to Argument Clinic. (#111904)Sam Gross2023-11-145-8/+117
* gh-111789: Simplify ceval.c by using PyDict_GetItemRef() (GH-111980)Serhiy Storchaka2023-11-141-18/+14
* gh-111789: Simplify import.c by using PyDict_GetItemRef() (GH-111979)Serhiy Storchaka2023-11-141-18/+17
* gh-111789: Use PyDict_GetItemRef() in _ctypes (GH-111828)Serhiy Storchaka2023-11-142-78/+61
* gh-111789: Use PyDict_GetItemRef() in Objects/ (GH-111827)Serhiy Storchaka2023-11-145-120/+76
* gh-111622: Fix doc for items views (#112051)Terry Jan Reedy2023-11-141-5/+8
* GH-111520: Add back the operand local (GH-111813)Brandt Bucher2023-11-143-28/+24
* gh-107149: make new opcode util functions private rather than public and unst...Irit Katriel2023-11-145-39/+43
* gh-112007: Re-organize help utility intro message (#112017)Terry Jan Reedy2023-11-131-11/+13
* GH-110417: Fix `glob` docs ordering (#110418)Barney Gale2023-11-131-34/+35
* GH-72904: Add `glob.translate()` function (#106703)Barney Gale2023-11-137-106/+229
* gh-111138: Add PyList_Extend() and PyList_Clear() functions (#111862)Victor Stinner2023-11-138-127/+303
* gh-111856: Fix os.fstat on windows with FAT32 and exFAT filesystem (GH-112038)AN Long2023-11-132-3/+10
* gh-111460: Restore ncurses widechar support on macOS (#111878)Davide Rizzo2023-11-133-3/+8
* gh-106905: avoid incorrect SystemError about recursion depth mismatch (#106906)Markus Mohrhard2023-11-133-0/+16
* gh-110944: Move pty helper to test.support and add basic pdb completion test ...Tian Gao2023-11-133-54/+91
* gh-102837: more tests for the math module (GH-111930)Sergey B Kirpichev2023-11-131-0/+55
* Docs: Add `make htmllive` to rebuild and reload HTML files in your browser (#...Hugo van Kemenade2023-11-132-0/+7
* gh-111999: Add signatures and improve docstrings for builtins (GH-112000)Serhiy Storchaka2023-11-138-39/+74
* gh-111928: make "memo" dict local to scan_once call (gh-112005)AN Long2023-11-131-23/+19
* gh-111944: Add assignment expression parentheses requirements (#111977)Terry Jan Reedy2023-11-131-4/+5
* GH-111429: Speed up `pathlib.PurePath.[is_]relative_to()` (#111431)Barney Gale2023-11-122-4/+10
* gh-111969: refactor to make it easier to construct a dis.Instruction object (...Irit Katriel2023-11-122-64/+101
* gh-112001: Fix test_builtins_have_signatures in test_inspect (GH-112002)Serhiy Storchaka2023-11-121-12/+7
* gh-111933: fix broken link to A.Neumaier article (gh-111937)Sergey B Kirpichev2023-11-121-1/+4
* gh-111777: Fix assertion errors on incorrectly still-tracked GC object destru...T. Wouters2023-11-121-1/+3
* Fix undefined behaviour in datetime.time.fromisoformat() (#111982)T. Wouters2023-11-111-1/+1
* gh-90890: New methods to access mailbox.Maildir message info and flags (#103905)Stephen Gildea2023-11-115-1/+247
* gh-110481: fix 'unused function' warning for `is_shared_refcnt_dead`. (gh-111...Sam Gross2023-11-101-4/+6
* gh-107431: Make `multiprocessing.managers.{DictProxy,ListProxy}` generic (#10...Nikita Sobolev2023-11-103-4/+12
* Remove dead code left after gh-110721 (#111905)Serhiy Storchaka2023-11-101-37/+0
* gh-80731: Avoid executing code in except block in cmd (GH-111740)Tian Gao2023-11-104-3/+43
* gh-111789: Simplify the sqlite code (GH-111829)Serhiy Storchaka2023-11-102-17/+6
* Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)Serhiy Storchaka2023-11-104-13/+18