summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ...Miss Islington (bot)2024-05-222-341/+414
* [3.13] gh-119049: Fix incorrect display of warning which is constructed by C ...Miss Islington (bot)2024-05-171-0/+10
* gh-118486: Simplify test_win32_mkdir_700 to check the exact ACL (GH-119056)Miss Islington (bot)2024-05-151-1/+1
* [3.13] gh-118998: Handle errors correctly in `tmtotuple` in `timemodule` (GH-...Miss Islington (bot)2024-05-131-10/+17
* [3.13] gh-118895: Call PyType_Ready() on typing.NoDefault (GH-118897) (#118914)Miss Islington (bot)2024-05-101-0/+3
* gh-118209: Add Windows structured exception handling to mmap module (GH-118213)Miss Islington (bot)2024-05-101-48/+328
* [3.13] Revert "gh-115432: Add critical section variant that handles a NULL ob...Miss Islington (bot)2024-05-091-9/+0
* gh-118773: Use language-invariant SDDL string instead of aliases for ACLs. (G...Miss Islington (bot)2024-05-091-154/+22
* [3.13] gh-117657: Acquire a critical section around `SemLock.__{enter,exit}__...Miss Islington (bot)2024-05-092-4/+14
* 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
* gh-118422: Fix run_fileexflags() test (#118429)Victor Stinner2024-04-301-7/+6
* gh-118218: Reuse return tuple in itertools.pairwise (GH-118219)Shantanu2024-04-301-2/+32
* gh-118406: Add signature for sqlite3.Connection objects (#118428)Erlend E. Aasland2024-04-301-0/+7
* gh-118332: Fix deadlock involving stop the world (#118412)Sam Gross2024-04-302-1/+87
* gh-118379: Use PyTuple_Pack instead of Py_BuildValue if possible (GH-118381)Nice Zombies2024-04-305-7/+7
* gh-118402: Fix inspect.signature() for functools.cmp_to_key() result (GH-118427)Serhiy Storchaka2024-04-301-0/+12
* gh-117783: Immortalize objects that use deferred reference counting (#118112)Sam Gross2024-04-291-0/+22
* gh-118285: Fix signatures of operator.{attrgetter,itemgetter,methodcaller} in...Serhiy Storchaka2024-04-291-0/+15
* gh-115119: Detect _decimal dependencies using pkg-config (#115406)Erlend E. Aasland2024-04-291-1/+13
* gh-118293: Suppress mouse cursor feedback when launching Windows processes wi...Henrik Tunedal2024-04-281-0/+48
* gh-110693: Pending Calls Machinery Cleanups (gh-118296)Eric Snow2024-04-262-32/+84
* gh-117578: Introduce _PyType_GetModuleByDef2 private function (GH-117661)neonene2024-04-251-5/+3
* gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089)Nice Zombies2024-04-252-1/+103
* gh-117968: Make the test for closed file more safe in the C API tests (GH-118...Serhiy Storchaka2024-04-251-2/+4
* gh-117786: Fix venv created from Windows Store install by restoring __PYVENV_...Steve Dower2024-04-241-10/+14
* gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)Eric Snow2024-04-245-9/+10