summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-117151: optimize BufferedWriter(), do not buffer writes that are the buffe...morotti2024-04-231-2/+2
* gh-68114: Fix handling for removed PyArg_ParseTuple 'w' formatters (GH-8204)Joe Jevnik2024-04-231-0/+118
* gh-116741: Upgrade libexpat to 2.6.2 (#117296)Seth Michael Larson2024-04-233-16/+36
* gh-117995: Don't raise DeprecationWarnings for indexed nameless params (#118001)Erlend E. Aasland2024-04-221-1/+1
* GH-115874: Fix segfault in FutureIter_dealloc (GH-117741)Savannah Ostrowski2024-04-191-2/+16
* gh-114099: Modify preprocessor symbol usage to support older macOS SDKs (GH-1...Russell Keith-Magee2024-04-191-0/+4
* gh-88035: update doc-string of `epoch` in timemodule.c (GH-118076)lit2024-04-191-2/+2
* gh-112069: Add _PySet_NextEntryRef to be thread-safe. (gh-117990)Donghee Na2024-04-183-17/+28
* gh-117968: Add tests for the part of the PyRun family of the C API (GH-117982)Serhiy Storchaka2024-04-174-1/+127
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-172-1/+34
* GH-100242: bring functools.py partial implementation more in line with C code...CF Bolz-Tereick2024-04-171-4/+11
* gh-117845: Detect libedit hook function signature in configure (#117870)Joshua Root2024-04-171-2/+2
* gh-117613: Argument Clinic: ensure that 'defining_class' params are positiona...neonene2024-04-162-6/+6
* gh-117613: Enhance test_clinic @defining_class tests (#117896)Victor Stinner2024-04-162-17/+88
* gh-90329: Add _winapi.GetLongPathName and GetShortPathName and use in venv to...Steve Dower2024-04-152-1/+228