summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-111138: Add PyList_Extend() and PyList_Clear() functions (#111862)Victor Stinner2023-11-131-0/+21
* gh-111928: make "memo" dict local to scan_once call (gh-112005)AN Long2023-11-131-23/+19
* 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-111789: Simplify the sqlite code (GH-111829)Serhiy Storchaka2023-11-102-17/+6
* Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)Serhiy Storchaka2023-11-102-13/+2
* gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Windows (GH...Serhiy Storchaka2023-11-101-1/+6
* gh-111569: Fix critical sections test on WebAssembly (GH-111897)Sam Gross2023-11-091-0/+4
* gh-111835: Add seekable method to mmap.mmap (gh-111852)Donghee Na2023-11-091-7/+14
* GH-111804: Drop posix.fallocate() under WASI (GH-111869)Brett Cannon2023-11-092-5/+8
* gh-111569: Implement Python critical section API (gh-111571)Sam Gross2023-11-084-1/+218
* Remove redundant check in dbm.open() (GH-111844)Serhiy Storchaka2023-11-081-5/+0
* gh-111495: Add tests for PyList C API (#111562)Kalyan2023-11-081-1/+179
* socket: Update generated AC code (#111853)Jelle Zijlstra2023-11-081-2/+7
* gh-111662: Update socket module to use AC for optimizing performance (gh-111661)Bogdan Romanyuk2023-11-082-69/+223
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-0727-154/+789
* gh-101180: Fix a bug where iso2022_jp_3 and iso2022_jp_2004 codecs read out o...Masayuki Moriyama2023-11-061-3/+6
* gh-111495: Add tests for PyComplex C API (GH-111591)Sergey B Kirpichev2023-11-051-0/+92
* gh-111495: Add tests for PyFloat C API (GH-111624)Sergey B Kirpichev2023-11-051-0/+74
* gh-110395: invalidate open kqueues after fork (#110517)Davide Rizzo2023-11-041-7/+137
* gh-96954: use a directed acyclic word graph for storing the unicodedata codep...CF Bolz-Tereick2023-11-042-30225/+17432
* GH-110829: Ensure Thread.join() joins the OS thread (#110848)Antoine Pitrou2023-11-041-55/+282
* Add a fuzz target for `_elementtree.XMLParser._parse_whole` (#111477)Brad Larsen2023-11-0359-0/+620
* gh-90026: support XATTRs on Cygwin (GH-105075)Philippe Cerfon2023-11-031-3/+9
* gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)Serhiy Storchaka2023-11-035-78/+16
* gh-111482: Use Argument Clinic for clock_gettime() (#111641)Victor Stinner2023-11-022-32/+139
* gh-108082: Use PyErr_FormatUnraisable() (GH-111580)Serhiy Storchaka2023-11-025-16/+12
* gh-76785: Crossinterp utils additions (gh-111530)Eric Snow2023-11-011-390/+29
* gh-106718: Treat PyConfig.stdlib_dir as highest-priority setting for stdlib_d...Yilei Yang2023-11-011-10/+14
* Simplify trivial calls of PyUnicode_FromFormat() (GH-111605)Serhiy Storchaka2023-11-012-2/+2
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-0125-781/+151
* gh-111495: Add tests for PyBytes and PyByteArray C API (GH-111496)Serhiy Storchaka2023-11-012-0/+344
* gh-111495: add stub files for C API test modules (GH-111586)Sergey B Kirpichev2023-11-0111-3/+169
* gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED was added to 3.12 (#111584)Victor Stinner2023-11-0110-17/+17
* gh-108082: Add PyErr_FormatUnraisable() function (GH-111086)Serhiy Storchaka2023-10-311-0/+25
* gh-76785: Move the Cross-Interpreter Code to Its Own File (gh-111502)Eric Snow2023-10-304-54/+56
* gh-108082: C API: Add tests for PyErr_WriteUnraisable() (GH-111455)Serhiy Storchaka2023-10-301-0/+17
* gh-110481: Implement biased reference counting (gh-110764)Sam Gross2023-10-3014-0/+84
* gh-90815: Add mimalloc memory allocator (#109914)Dino Viehland2023-10-301-0/+9
* gh-94808: Add coverage test for number check (gh-111445)Evan Kohilas2023-10-291-0/+7
* gh-111342: fix typo in math.sumprod (GH-111416)Sergey B Kirpichev2023-10-281-1/+1
* gh-108765: Include explicitly <unistd.h> in signalmodule.c (#111402)Victor Stinner2023-10-271-0/+3
* no-issue: Remove unused variable in getpath.py (gh-111372)Satish Pokala2023-10-271-2/+0
* gh-109587: Allow "precompiled" perf-trampolines to largely mitigate the cost ...gsallam2023-10-271-0/+32
* GH-111293: Fix DirEntry.inode dropping higher bits on Windows (GH-111294)zcxsythenew2023-10-261-3/+3
* Output more details in the re tracing (GH-111357)Serhiy Storchaka2023-10-262-4/+42
* gh-67224: Show source lines in tracebacks when using the -c option when runni...Pablo Galindo Salgado2023-10-261-1/+1
* gh-111230: Fix errors checking in _ssl module init (#111232)Nikita Sobolev2023-10-251-82/+71
* gh-111174: Fix crash in getbuffer() called repeatedly for empty BytesIO (GH-1...Serhiy Storchaka2023-10-251-3/+4
* gh-106320: Re-add some PyLong/PyDict C-API functions (GH-#111162)scoder2023-10-255-5/+1