summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-42663: Fix parsing TZ strings in zoneinfo module (GH-23825)Serhiy Storchaka2023-10-141-218/+151
* gh-109747: Improve errors for unsupported look-behind patterns (GH-109859)Serhiy Storchaka2023-10-142-9/+7
* gh-110628: Add tests for PyLong C API (GH-110629)Serhiy Storchaka2023-10-142-0/+224
* gh-110815: Improve tests for PyArg_ParseTupleAndKeywords() (GH-110817)Serhiy Storchaka2023-10-131-13/+39
* gh-71587: Establish global state in `_datetime` (#110475)Erlend E. Aasland2023-10-121-136/+172
* gh-104169: Fix test_peg_generator after tokenizer refactoring (#110727)Lysandros Nikolaou2023-10-121-1/+1
* gh-85283: _stat extension now uses the limited C API (#110711)Victor Stinner2023-10-111-0/+3
* gh-110289: C API: Add PyUnicode_EqualToUTF8() and PyUnicode_EqualToUTF8AndSiz...Serhiy Storchaka2023-10-111-0/+44
* gh-84489: C API: Add tests for Py_BuildValue() (GH-110596)Serhiy Storchaka2023-10-111-0/+37
* gh-110525: Add tests for internal `set` CAPI (GH-110630)Nikita Sobolev2023-10-104-1/+64
* gh-110590: Fix a bug where _sre.compile would overwrite exceptions (#110591)Nikita Sobolev2023-10-101-0/+3
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-2/+6
* gh-84570: Implement Waiting in SendChannel.send() (gh-110565)Eric Snow2023-10-101-26/+101
* gh-109693: Use pyatomic.h for signal module (gh-110480)Donghee Na2023-10-091-17/+18
* gh-78469: Declare missing sethostname for Solaris 10 (#109447)Jakub Kulík2023-10-091-2/+3
* gh-107652: Set up CIFuzz to run fuzz targets continuously (#107653)Illia Volochii2023-10-091-0/+3
* gh-76785: Add SendChannel.send_buffer() (#110246)Eric Snow2023-10-092-36/+287
* gh-109191: Fix build with newer editline (gh-110239)Bo Anderson2023-10-091-1/+1
* gh-110525: Cover PySet_Add corner case with frozenset objects (GH-110544)Nikita Sobolev2023-10-091-0/+37
* gh-110549: Remove unused includes of <stddef.h> in _testcapi (GH-110552)Nikita Sobolev2023-10-093-6/+0
* gh-110525: Add CAPI tests for set and frozenset objects (GH-110526)Nikita Sobolev2023-10-094-1/+167
* gh-89902: Deprecate non-standard format specifier "N" for Decimal (GH-110508)Serhiy Storchaka2023-10-081-0/+6
* gh-108277: Add os.timerfd_create() function (#108382)Masaru Tsuchiyama2023-10-072-1/+639
* gh-76785: Support Running Some Functions in Subinterpreters (gh-110251)Eric Snow2023-10-061-24/+318
* gh-106078: Suppress the warning caused by multi-phase initialization of `deci...Charlie Zhao2023-10-061-1/+7
* gh-110489: Optimise math.ceil for known exact float (#108801)Shantanu2023-10-061-7/+9
* gh-82367: Use `FindFirstFile` Win32 API in `ntpath.realpath()` (GH-110298)박문식2023-10-052-1/+71
* gh-110365: Fix error overwrite in `termios.tcsetattr` (#110366)Nikita Sobolev2023-10-051-13/+26
* gh-88402: Add new sysconfig variables on Windows (GH-110049)Sam Gross2023-10-044-0/+122
* gh-76785: Print the Traceback from Interpreter.run() (gh-110322)Eric Snow2023-10-041-1/+7
* GH-109369: Merge all eval-breaker flags and monitoring version into one word....Mark Shannon2023-10-042-8/+4
* gh-110260: Check for PyList_SetItem() errors in termios module (GH-110261)Nikita Sobolev2023-10-041-17/+32
* gh-110300: Fix Refleaks in test_interpreters and test__xxinterpchannels (gh-1...Eric Snow2023-10-041-2/+9
* Revert "gh-76785: Print the Traceback from Interpreter.run() (gh-110248)" (gh...Eric Snow2023-10-031-4/+0