summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-111049: Fix crash during garbage collection of the BytesIO buffer object (...Serhiy Storchaka2023-12-141-10/+4
* gh-86179: Implement realpath() on Windows for getpath.py calculations (GH-113...Steve Dower2023-12-131-0/+39
* gh-110190: Fix ctypes structs with array on PPCLE64 (GH-112959)Diego Russo2023-12-132-59/+124
* gh-111650: Ensure pyconfig.h includes Py_GIL_DISABLED on Windows (GH-112778)Steve Dower2023-12-1312-24/+0
* gh-112205: Support `@setter` annotation from AC (gh-112922)Donghee Na2023-12-136-52/+113
* gh-112723: Call `PyThreadState_Clear()` from the correct interpreter (#112776)Sam Gross2023-12-131-0/+2
* gh-76785: Add Interpreter.prepare_main() (gh-113021)Eric Snow2023-12-121-0/+56
* gh-76785: More Fixes for test.support.interpreters (gh-113012)Eric Snow2023-12-124-2/+1692
* gh-76785: Fixes for test.support.interpreters (gh-112982)Eric Snow2023-12-124-169/+401
* gh-51944: fix type and missing addition in gh-112823 (#112996)Ronald Oussoren2023-12-121-1/+4
* gh-87286: Add a number of LOG_* constants to syslog (#24432)Ronald Oussoren2023-12-121-0/+24
* gh-112529: Use atomic operations for `gcstate->collecting` (#112533)Sam Gross2023-12-111-184/+168
* Add a fuzzer for `Py_CompileStringExFlags` (#111721)Brad Larsen2023-12-109-0/+262
* gh-51944: Add missing macOS constants to termios (#112823)Ronald Oussoren2023-12-071-0/+61
* gh-112730: Use color to highlight error locations (gh-112732)Pablo Galindo Salgado2023-12-062-1/+49
* gh-111178: Define `visitproc` callback functions properly and remove unnecess...Christopher Chavez2023-12-061-9/+13
* gh-111545: Add Py_HashPointer() function (#112096)Victor Stinner2023-12-061-0/+16
* gh-110190: Fix ctypes structs with array on Arm (#112604)Diego Russo2023-12-052-18/+71
* gh-105323: Remove `WITH_APPLE_EDITLINE` to use the same declaration for all e...Tian Gao2023-12-051-6/+2
* gh-112334: Restore subprocess's use of `vfork()` & fix `extra_groups=[]` beha...Gregory P. Smith2023-12-041-2/+10
* gh-112535: Add test on _Py_ThreadId() (#112709)Victor Stinner2023-12-041-0/+14
* gh-105967: Work around a macOS bug, limit zlib C library crc32 API calls to 1...Gregory P. Smith2023-12-042-10/+26
* gh-109786: Fix leaks and crash when re-enter itertools.pairwise.__next__() (G...Serhiy Storchaka2023-12-041-2/+11
* gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679)Christopher Chavez2023-12-041-1/+1
* gh-112567: Add _PyTimeFraction C API (#112568)Victor Stinner2023-12-011-35/+19
* gh-112567: Add _Py_GetTicksPerSecond() function (#112587)Victor Stinner2023-12-013-107/+114
* bpo-37013: Fix the error handling in socket.if_indextoname() (GH-13503)Zackery Spytz2023-12-011-5/+11
* gh-112510: Add `readline.backend` for the backend readline uses (GH-112511)Tian Gao2023-12-011-1/+8
* gh-112205: Update stringio module to use AC for the thread-safe (gh-112549)Donghee Na2023-11-302-35/+79
* gh-112205: Support @getter annotation from AC (gh-112396)Donghee Na2023-11-302-49/+88
* Add more C API tests (GH-112522)Serhiy Storchaka2023-11-291-0/+33
* gh-112454: Disable TLS-PSK if OpenSSL was built without PSK support (#112491)Grant Ramsay2023-11-291-0/+28
* gh-109802: Increase test coverage for complexobject.c (GH-112452)Sergey B Kirpichev2023-11-281-0/+59
* gh-112105: Make completer delims work on libedit (gh-112106)Tian Gao2023-11-281-0/+16
* gh-112071: Make `_random.Random` methods thread-safe in `--disable-gil` build...Radislav Chugunov2023-11-282-10/+46
* gh-112292 : Catch import error conditions with readline hooks (gh-112313)Anthony Shaw2023-11-281-22/+69
* bpo-41422: Visit the Pickler's and Unpickler's memo in tp_traverse (GH-21664)kale-smoothie2023-11-271-0/+15
* gh-111789: Use PyDict_GetItemRef() in Modules/pyexpat.c (gh-112079)Serhiy Storchaka2023-11-271-12/+5
* gh-111789: Use PyDict_GetItemRef() in Modules/_threadmodule.c (gh-112077)Serhiy Storchaka2023-11-271-6/+4
* gh-111789: Use PyDict_GetItemRef() in Modules/_struct.c (gh-112076)Serhiy Storchaka2023-11-271-5/+4
* gh-111789: Use PyDict_GetItemRef() in Modules/_csv.c (gh-112073)Serhiy Storchaka2023-11-271-8/+2
* gh-112438: Fix support of format units with the "e" prefix in nested tuples i...Serhiy Storchaka2023-11-271-5/+9
* gh-63284: Add support for TLS-PSK (pre-shared key) to the ssl module (#103181)Grant Ramsay2023-11-272-1/+360
* gh-112358: Fix Python 3.12 regression with subclassing struct.Struct. (#112424)Mark Dickinson2023-11-262-34/+41
* gh-76785: Return an "excinfo" Object From Interpreter.run() (gh-111573)Eric Snow2023-11-231-69/+25
* gh-76785: Add _PyType_GetModuleName() to the Internal C-API (gh-112323)Eric Snow2023-11-222-0/+17
* gh-111965: Use critical sections to make io.BufferedIOBase and its related cl...Mayuresh Kedari2023-11-222-40/+180
* gh-59703: restore include of mach-o/dyld.h (gh-112309)Ned Deily2023-11-221-0/+1
* gh-111863: Rename term Py_NOGIL to Py_GIL_DISABLED in sysconfig (gh-112307)Donghee Na2023-11-221-3/+3
* gh-59703: use the system dladdr function in getpath.c for macOS framework bui...AN Long2023-11-211-11/+6