summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-81057: Move Signal-Related Globals to _PyRuntimeState (gh-100085)Eric Snow2022-12-121-56/+15
* gh-81057: Move faulthandler Globals to _PyRuntimeState (gh-100152)Eric Snow2022-12-121-63/+9
* gh-81057: Move tracemalloc Globals to _PyRuntimeState (gh-100151)Eric Snow2022-12-121-68/+14
* gh-81057: Fix a Reference Leak in the posix Module (gh-100140)Eric Snow2022-12-091-0/+1
* GH-98363: Shrink the physical size as well as the logical size (GH-100138)Raymond Hettinger2022-12-091-2/+1
* gh-81057: Fix an ifdef in the time module (#100125)Eric Snow2022-12-091-2/+4
* gh-81057: Move time Globals to _PyRuntimeState (gh-100122)Eric Snow2022-12-082-66/+58
* gh-81057: Move OS-Related Globals to _PyRuntimeState (gh-100082)Eric Snow2022-12-081-16/+38
* GH-98363: Have batched() return tuples (GH-100118)Raymond Hettinger2022-12-082-21/+23
* gh-98030: socket: add missing TCP socket options (#98031)Matthieu Baerts2022-12-081-3/+63
* gh-81057: Move More Globals to _PyRuntimeState (gh-100092)Eric Snow2022-12-071-12/+12
* gh-98724: Fix Py_CLEAR() macro side effects (#99100) (#100070)Victor Stinner2022-12-071-0/+87
* gh-93453: No longer create an event loop in get_event_loop() (#98440)Serhiy Storchaka2022-12-062-87/+4
* gh-99984: Fix Compiler Warnings (#100036)Eric Snow2022-12-051-2/+6
* gh-99741: Implement Multi-Phase Init for the _xxsubinterpreters Module (gh-99...Eric Snow2022-12-051-123/+226
* gh-60203: Revert changes in cycle.__setstate__ (#99982)Serhiy Storchaka2022-12-051-2/+3
* gh-98248: Normalizing the error messages in function struct.pack (GH-98252)Felix Ye2022-12-041-57/+130
* GH-91054: Reset static events counts in code watchers tests (#99978)Itamar Ostricher2022-12-041-0/+9
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-0338-267/+266
* gh-99741: Clean Up the _xxsubinterpreters Module (gh-99940)Eric Snow2022-12-021-299/+615
* GH-91054: Add code object watchers API (GH-99859)Itamar Ostricher2022-12-021-0/+131
* gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data (GH-99613)Serhiy Storchaka2022-12-011-0/+36
* gh-99845: Use size_t type in __sizeof__() methods (#99846)Victor Stinner2022-11-3012-94/+74
* gh-99127: Allow some features of syslog to the main interpreter only (gh-99128)Dong-hee Na2022-11-291-2/+27
* gh-99845: Clean up _PyObject_VAR_SIZE() usage (#99847)Victor Stinner2022-11-291-3/+2
* GH-91375: Port `_asyncio` static types to heap types and module state (#99122)Kumar Aditya2022-11-292-435/+783
* gh-99593: Add tests for Unicode C API (part 1) (GH-99651)Serhiy Storchaka2022-11-291-6/+332
* bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults (#18640)Zackery Spytz2022-11-281-8/+20
* GH-95896: posixmodule.c: fix osdefs.h inclusion to not depend on compiler (#9...TheShermanTanker2022-11-261-11/+3
* gh-98724: Fix warnings on Py_SETREF() usage (#99781)Victor Stinner2022-11-251-1/+1
* bpo-40882: Fix a memory leak in SharedMemory on Windows (GH-20684)Zackery Spytz2022-11-252-1/+52
* bpo-38031: Fix a possible assertion failure in _io.FileIO() (#GH-5688)Zackery Spytz2022-11-251-1/+5
* Revert "gh-98724: Fix Py_CLEAR() macro side effects" (#99737)Victor Stinner2022-11-241-87/+0
* gh-64490: Fix bugs in argument clinic varargs processing (#32092)colorfulappl2022-11-242-1/+508
* gh-99240: Fix double-free bug in Argument Clinic str_converter generated code...colorfulappl2022-11-242-1/+150
* gh-64490: Fix refcount error when arguments are packed to tuple in argument c...colorfulappl2022-11-242-1/+103
* gh-96828: Add an `ssl.OP_ENABLE_KTLS` option (GH-96830)Illia Volochii2022-11-241-0/+3
* gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)Victor Stinner2022-11-2314-43/+22
* gh-99300: Replace Py_INCREF() with Py_NewRef() in _elementtree.c (#99696)Victor Stinner2022-11-221-69/+36
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-222-1/+53
* gh-99537: Use Py_CLEAR() function in C code (#99686)Victor Stinner2022-11-222-12/+5
* gh-99537: Use Py_SETREF() function in C code (#99656)Victor Stinner2022-11-2217-54/+24
* gh-91053: Add an optional callback that is invoked whenever a function is mod...mpage2022-11-221-0/+237
* gh-99537: Use Py_SETREF() function in longobject C code (#99655)Victor Stinner2022-11-221-8/+4
* GH-97001: Release GIL in termios extension (#99503)Ronald Oussoren2022-11-221-12/+76
* gh-47146: Soft-deprecate structmember.h, expose its contents via Python.h (GH...Petr Viktorin2022-11-224-148/+223
* gh-96002: Add functional test for Argument Clinic (#96178)colorfulappl2022-11-213-0/+3244
* gh-99337: Fix compile errors with gcc 12 on macOS (#99470)Ronald Oussoren2022-11-215-6/+49
* gh-99284: [ctypes] remove `_use_broken_old_ctypes_structure_semantics_` (GH-...Nikita Sobolev2022-11-191-22/+1
* gh-93649: Split float/long tests from _testcapimodule.c (GH-99549)Erlend E. Aasland2022-11-176-624/+668