summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* gh-69214: Fix fcntl.ioctl() request type (#119498)Victor Stinner2024-05-242-8/+9
* gh-119461: Fix ThreadedVSOCKSocketStreamTest (#119465)Victor Stinner2024-05-231-0/+1
* gh-117398: Statically Allocate the Datetime C-API (GH-119472)Eric Snow2024-05-231-35/+83
* gh-117142: Slightly hacky fix for memory leak of StgInfo (GH-119424)Petr Viktorin2024-05-232-53/+45
* gh-117142: ctypes: Clean up c-analyzer .tsv files (GH-117544)neonene2024-05-221-6/+0
* Remove almost all unpaired backticks in docstrings (#119231)Geoffrey Thomas2024-05-226-12/+12
* gh-119213: Be More Careful About _PyArg_Parser.kwtuple Across Interpreters (g...Eric Snow2024-05-222-1/+81
* gh-118692: Avoid creating unnecessary StopIteration instances for monitoring ...Irit Katriel2024-05-211-4/+5
* gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ...Nice Zombies2024-05-212-341/+414
* gh-117657: Fix itertools.count thread safety (#119268)Arnon Yaari2024-05-211-9/+31
* gh-118928: sqlite3: correctly bail if sequences of params are used with named...Erlend E. Aasland2024-05-201-0/+1
* gh-119049: Fix incorrect display of warning which is constructed by C API (GH...Kirill Podoprigora2024-05-161-0/+10
* gh-118486: Simplify test_win32_mkdir_700 to check the exact ACL (GH-119056)Steve Dower2024-05-151-1/+1
* gh-118928: sqlite3: disallow sequences of params with named placeholders (#11...Erlend E. Aasland2024-05-141-6/+2
* gh-118998: Handle errors correctly in `tmtotuple` in `timemodule` (#118999)Nikita Sobolev2024-05-131-10/+17
* gh-117873: Revert _posixshmem.shm_open() change (#118901)Victor Stinner2024-05-132-5/+4
* gh-118924: Remove `sqlite3.version` and `sqlite3.version_info` (#118925)Hugo van Kemenade2024-05-101-4/+0
* gh-118895: Call PyType_Ready() on typing.NoDefault (#118897)Jelle Zijlstra2024-05-101-0/+3
* gh-117398: Move types to datetime state (#118606)Victor Stinner2024-05-101-77/+99
* gh-117873: Use positional-only parameters in _posixshmem (#118012)Victor Stinner2024-05-102-11/+14
* gh-118209: Add Windows structured exception handling to mmap module (GH-118213)Dobatymo2024-05-101-48/+328
* Revert "gh-115432: Add critical section variant that handles a NULL object (#...Sam Gross2024-05-091-9/+0
* gh-118773: Use language-invariant SDDL string instead of aliases for ACLs. (G...Steve Dower2024-05-091-154/+22
* gh-117657: Acquire a critical section around `SemLock.__{enter,exit}__` (#118...mpage2024-05-092-4/+14
* GH-101588: Remove deprecated pickle/copy/deepcopy from itertools (gh-118816)Raymond Hettinger2024-05-091-858/+0
* gh-118671: Updated dead ActiveState links (#118730)trag1c2024-05-081-1/+1
* bpo-115773: Use the right variable name based on the field we are trying read...Abhinav Upadhyay2024-05-071-2/+2
* gh-66410: Do not stringify arguments of Tkinter callback (GH-98592)Serhiy Storchaka2024-05-072-11/+14
* gh-118314: Fix padding edge case in binascii.a2b_base64 strict mode (GH-118320)Youfu Zhang2024-05-071-0/+7
* gh-112075: use per-thread dict version pool (#118676)Dino Viehland2024-05-071-1/+13
* gh-118527: Intern code consts in free-threaded build (#118667)Sam Gross2024-05-071-0/+12
* gh-71592: Fix a leak in tkinter.Tk destructor when _debug is true (GH-118664)Serhiy Storchaka2024-05-061-0/+1
* gh-118362: Fix thread safety around lookups from the type cache in the face o...Dino Viehland2024-05-064-6/+8
* gh-71592: Add ability to trace Tcl commands executed by Tkinter (GH-118291)Serhiy Storchaka2024-05-062-2/+175
* gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH...Petr Viktorin2024-05-0613-15/+15
* gh-95382: Improve performance of json encoder with indent (GH-118105)Pieter Eendebak2024-05-061-40/+96
* gh-111201: A new Python REPL (GH-111567)Pablo Galindo Salgado2024-05-051-5/+16
* gh-110850: Remove _PyTime_TimeUnchecked() function (#118552)Victor Stinner2024-05-052-5/+12
* gh-109617: fix ncurses incompatibility on macOS with Xcode 15 (#111258)Davide Rizzo2024-05-041-4/+13
* gh-111997: C-API for signalling monitoring events (#116413)Irit Katriel2024-05-044-1/+512
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-03102-32/+200
* gh-101732: Modules/_ssl.c: use Y2038 compatible openssl function when availab...Alexander Kanavin2024-05-031-0/+4
* gh-116126: Implement PEP 696 (#116129)Jelle Zijlstra2024-05-031-0/+3
* gh-117953: Other Cleanups in the Extensions Machinery (gh-118206)Eric Snow2024-05-031-1/+167
* gh-118486: Switch mkdir(mode=0o700) on Windows to use OWNER RIGHTS instead of...Steve Dower2024-05-021-3/+16
* gh-93502: Add new C-API functions to trace object creation and destruction (#...Pablo Galindo Salgado2024-05-021-0/+84
* gh-82062: Fix support of parameter defaults on methods in extension modules (...Sergey B Kirpichev2024-05-021-0/+10
* gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488)Steve Dower2024-05-021-2/+156
* gh-110850: Add PyTime_TimeRaw() function (#118394)Victor Stinner2024-05-011-0/+60
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-05-012-1/+18