summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-118789: Add `PyUnstable_Object_ClearWeakRefsNoCallbacks` (#118807)Sam Gross2024-06-181-0/+8
* gh-120674: Protect multi-line macros in _testbuffer.c and _testcapimodule.c (...Bénédikt Tran2024-06-182-60/+86
* gh-119182: Add PyUnicodeWriter C API (#119184)Victor Stinner2024-06-171-0/+221
* gh-119933: Improve ``SyntaxError`` message for invalid type parameters expres...Bénédikt Tran2024-06-171-3/+3
* gh-83754: Use the Py_TYPE() macro (#120599)Victor Stinner2024-06-171-1/+1
* gh-120586: Fix several "unused function" warnings in `posixmodule.c` (#120588)Nikita Sobolev2024-06-171-1/+3
* gh-120584: Fix "unused thread_critical_sections" warning in `test_critical_se...Nikita Sobolev2024-06-161-1/+1
* gh-120161: Fix a Crash in the _datetime Module (gh-120182)Eric Snow2024-06-141-46/+2
* gh-117398: Add datetime C-API type check test for subinterpreters (gh-119604)neonene2024-06-131-3/+45
* gh-71587: Drop local reference cache to `_strptime` module in `_datetime` (gh...neonene2024-06-121-7/+7
* gh-120155: Add assertion to sre.c match_getindex() (#120402)Victor Stinner2024-06-121-0/+2
* gh-120029: remove unused macros in ``symtable.c`` (#120222)Bénédikt Tran2024-06-121-1/+0
* gh-120029: make `symtable.Symbol.__repr__` correctly reflect the compiler's f...Bénédikt Tran2024-06-121-0/+2
* gh-120056: Add `IP_RECVERR`, `IP_RECVORIGDSTADDR`, `IP_RECVTTL` to `socket` m...Nikita Sobolev2024-06-121-0/+9
* gh-120346: Respect PYTHON_BASIC_REPL when running in interactive inspect mode...Pablo Galindo Salgado2024-06-111-1/+2
* gh-120057: Add os.environ.refresh() method (#120059)Victor Stinner2024-06-102-1/+34
* gh-120155: Fix Coverity issue in zoneinfo load_data() (#120232)Victor Stinner2024-06-101-1/+1
* gh-120296: Fix format string of fcntl.ioctl() audit (#120301)Clinton2024-06-101-1/+1
* gh-120244: Fix re.sub() reference leak (GH-120245)neonene2024-06-081-0/+1
* gh-119258: Eliminate Type Guards in Tier 2 Optimizer with Watcher (GH-119365)Saul Shanabrook2024-06-082-17/+19
* gh-119577: Adjust DeprecationWarning when testing element truth values in Ele...Jacob Walls2024-06-071-1/+1
* gh-117657: Fix TSAN race involving import lock (#118523)Sam Gross2024-06-062-9/+27
* gh-120155: Initialize variables in _tkinter.c (#120156)Victor Stinner2024-06-061-2/+7
* gh-115225: Raise error on unsupported ISO 8601 time strings (#119339)benchatt2024-06-051-0/+3
* gh-119842: Honor PyOS_InputHook in the new REPL (GH-119843)Pablo Galindo Salgado2024-06-042-1/+70
* gh-112672: Fix builtin Tkinter with Tcl 9.0 (GH-112681)Christopher Chavez2024-06-041-14/+24
* gh-89928: Fix integer conversion of device numbers (GH-31794)Serhiy Storchaka2024-06-042-37/+83
* gh-120029: export `DEF_TYPE_PARAM` compiler flag (#120028)Bénédikt Tran2024-06-041-1/+3
* gh-117398: Use Per-Interpreter State for the _datetime Static Types (gh-119929)Eric Snow2024-06-031-55/+142
* gh-117142: Support Importing ctypes in Isolated Interpreters (gh-119991)Eric Snow2024-06-031-1/+1
* gh-117398: Add datetime Module State (gh-119810)Eric Snow2024-06-031-162/+370
* gh-117657: Fix race involving immortalizing objects (#119927)Sam Gross2024-06-031-15/+9
* gh-116560: Add PyLong_GetSign() public function (#116561)Sergey B Kirpichev2024-06-031-0/+14
* gh-119506: fix `_io.TextIOWrapper.write()` write during flush (#119507)Radislav Chugunov2024-06-031-9/+22
* gh-119770: Make termios ioctl() constants positive (#119840)Victor Stinner2024-05-311-3/+15
* gh-119585: Fix crash involving `PyGILState_Release()` and `PyThreadState_Clea...Sam Gross2024-05-311-0/+9
* gh-103194: Fix Tkinter’s Tcl value type handling for Tcl 8.7/9.0 (GH-103846)Christopher Chavez2024-05-311-18/+32
* gh-119744: move a few functions from compile.c to flowgraph.c (#119745)Irit Katriel2024-05-301-0/+1
* gh-119690: Adds Unicode support for named pipes in _winapi (GH-119717)Steve Dower2024-05-292-28/+33
* gh-119655: Fix reference leak in the ``_datetimemodule.c`` (gh-119713)Kirill Podoprigora2024-05-291-2/+5
* gh-97588: Align ctypes struct layout to GCC/MSVC (GH-97702)Matthias Görgens2024-05-295-132/+2229
* gh-119661: Add _Py_SINGLETON() include in Argumenet Clinic (#119712)Victor Stinner2024-05-2911-16/+34
* gh-119613: Use C99+ functions instead of Py_IS_NAN/INFINITY/FINITE (#119619)Sergey B Kirpichev2024-05-294-110/+108
* gh-117398: Convert datetime.IsoCalendarDate To A Heap Type (gh-119637)Eric Snow2024-05-281-22/+60
* gh-117398: gh-119655: datetime: Init static state once & don't free it (GH-11...Petr Viktorin2024-05-281-5/+13
* gh-117557: Improve error messages when a string, bytes or bytearray of length...Serhiy Storchaka2024-05-287-82/+369
* gh-117398: Add multiphase support to _datetime (gh-119373)Erlend E. Aasland2024-05-271-15/+11
* gh-119584: Fix test_import Failed Assertion (gh-119623)Eric Snow2024-05-271-0/+3
* gh-119560: Drop an Invalid Assert in PyState_FindModule() (gh-119561)Eric Snow2024-05-251-2/+89
* gh-118263: Add additional arguments to path_t (Argument Clinic type) in posix...Nice Zombies2024-05-242-285/+362