summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-111065: Add more tests for the C API with the PySys_ prefix (GH-111067)Serhiy Storchaka2023-10-254-32/+61
* gh-111295: Fix error checking in time extension module init (#111296)Nikita Sobolev2023-10-251-10/+17
* gh-111233: Fix error checking in select extension module init (#111234)Nikita Sobolev2023-10-251-66/+84
* gh-111253: Fix error checking in _socket module init (#111254)Nikita Sobolev2023-10-251-2/+2
* gh-111251: Fix error checking in _blake2 module init (#111252)Nikita Sobolev2023-10-251-8/+17
* gh-110572: Remove `test_*` from `_testcapi/getargs.c` (GH-111214)Nikita Sobolev2023-10-241-206/+14
* GH-109369: Add machinery for deoptimizing tier2 executors, both individually ...Mark Shannon2023-10-231-0/+28
* gh-67565: Remove redundant C-contiguity checks (GH-105521)Furkan Onder2023-10-2323-373/+24
* gh-110572: Fix potential leaks in test_*_code in _testcapi/getargs.c (GH-110573)Nikita Sobolev2023-10-211-33/+57
* gh-111089: Use PyUnicode_AsUTF8() in sqlite3 (#111122)Victor Stinner2023-10-201-6/+1
* gh-111089: PyUnicode_AsUTF8AndSize() sets size on error (#111106)Victor Stinner2023-10-201-1/+1
* gh-111089: Add PyUnicode_AsUTF8() to the limited C API (#111121)Victor Stinner2023-10-201-2/+2
* gh-111119: Fix flaky test test_lock_two_threads (gh-111124)Sam Gross2023-10-201-4/+12
* gh-110093: Partially revert previous change in socketmodule.c (GH-111120)Serhiy Storchaka2023-10-201-1/+3
* gh-110093: Replace trivial Py_BuildValue() with direct C API call (GH-110094)Serhiy Storchaka2023-10-2013-32/+33
* gh-110913: Fix WindowsConsoleIO chunking of UTF-8 text (GH-111007)Tamás Hegedűs2023-10-201-16/+20
* gh-85283: Build posixshmem extension with Limited C API (#111087)Victor Stinner2023-10-192-100/+18
* gh-76785: Make interpreters.*Channel Objects Shareable (gh-110607)Eric Snow2023-10-191-0/+4
* gh-76785: Add *Channel.is_closed (gh-110606)Eric Snow2023-10-191-2/+276
* gh-76785: Clean Up the Channels Module (gh-110568)Eric Snow2023-10-171-289/+327
* gh-85283: Build _uuid extension with limited C API (#111010)Victor Stinner2023-10-171-0/+3
* gh-84570: Add Timeouts to SendChannel.send() and RecvChannel.recv() (gh-110567)Eric Snow2023-10-173-22/+34
* gh-85283: Build _scproxy extension with limited C API (#111008)Victor Stinner2023-10-171-13/+11
* gh-84570: Send-Wait Fixes for _xxinterpchannels (gh-111006)Eric Snow2023-10-172-104/+333
* gh-85283: Build resource extension with limited C API (#110989)Victor Stinner2023-10-172-30/+32
* gh-85283: Fix _ctypes_test build on Windows in release mode (#111005)Victor Stinner2023-10-171-0/+7
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-17111-104/+292
* gh-85283: Fix Argument Clinic for md5 extension (#110976)Victor Stinner2023-10-171-2/+2
* gh-85283: Build md5 extension with limited C API (#110967)Victor Stinner2023-10-172-64/+21
* gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED new in 3.13. (#110969)Victor Stinner2023-10-174-5/+9
* gh-85283: Build errno and _ctypes_test with limited C API (#110955)Victor Stinner2023-10-173-36/+40
* gh-85283: Build _testimportmultiple with limited C API (#110954)Victor Stinner2023-10-171-2/+4
* gh-109693: Update _gil_runtime_state.locked to use pyatomic.h (gh-110836)Donghee Na2023-10-161-0/+16
* gh-84570: Factor Out _channel_send_wait() (gh-110949)Eric Snow2023-10-161-45/+43
* gh-110864: Fix _PyArg_UnpackKeywordsWithVararg overwriting vararg with NULL (...Nikita Sobolev2023-10-162-1/+92