summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-93649: Split watcher API tests from _testcapimodule.c (#99532)Erlend E. Aasland2022-11-164-286/+307
* gh-81057: Move the global Dict-Related Versions to _PyRuntimeState (gh-99497)Eric Snow2022-11-161-0/+1
* gh-99377: Add audit events for thread creation and clear (GH-99378)Steve Dower2022-11-161-1/+9
* gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)Eric Snow2022-11-161-3/+3
* gh-93649: Split memory and docstring tests from _testcapimodule.c (#99517)Erlend E. Aasland2022-11-165-671/+759
* gh-96269: static and shared ext need different deps (#96316)Christian Heimes2022-11-161-4/+7
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99513)Victor Stinner2022-11-169-28/+14
* gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496)Eric Snow2022-11-152-27/+35
* gh-93649: Split pytime and datetime tests from _testcapimodule.c (#99494)Erlend E. Aasland2022-11-155-678/+736
* gh-93649: Split getargs tests from _testcapimodule.c (#99346)Erlend E. Aasland2022-11-144-832/+925
* gh-99300: Use Py_NewRef() in Modules/ directory (#99473)Victor Stinner2022-11-147-97/+54
* gh-99300: Use Py_NewRef() in Modules/ directory (#99469)Victor Stinner2022-11-1410-130/+66
* gh-99370: Calculate zip path from prefix when in a venv (GH-99371)Kai Zhang2022-11-141-2/+1
* gh-87092: expose the compiler's codegen to python for unit tests (GH-99111)Irit Katriel2022-11-142-2/+86
* gh-99426: Use PyUnicode_FromFormat() and PyErr_Format() instead of sprintf (G...Serhiy Storchaka2022-11-143-25/+9
* gh-99300: Use Py_NewRef() in Modules/ directory (#99468)Victor Stinner2022-11-1410-173/+92
* gh-99300: Use Py_NewRef() in Modules/_datetimemodule.c (#99465)Victor Stinner2022-11-142-98/+49
* gh-99300: Use Py_NewRef() in Modules/ directory (#99467)Victor Stinner2022-11-1410-144/+75
* gh-99300: Use Py_NewRef() in Modules/ directory (#99466)Victor Stinner2022-11-1410-214/+106
* gh-99300: Use Py_NewRef() in Modules/_asynciomodule.c (#99441)Victor Stinner2022-11-131-54/+26
* gh-98930: improve the docstring of signal.strsignal (#99290)ram vikram singh2022-11-132-6/+8
* gh-99275: Fix `SystemError` in `ctypes` during `__initsubclass__` (#99283)Nikita Sobolev2022-11-131-1/+4
* gh-99300: Use Py_NewRef() in Modules/_ctypes/ (#99436)Victor Stinner2022-11-135-124/+62
* gh-99300: Use Py_NewRef() in Modules/ directory (#99440)Victor Stinner2022-11-136-82/+41
* gh-99300: Use Py_NewRef() in Modules/itertoolsmodule.c (#99439)Victor Stinner2022-11-131-62/+31
* gh-99300: Use Py_NewRef() in Modules/_elementtree.c (#99438)Victor Stinner2022-11-131-82/+37
* gh-83638: Add sqlite3.Connection.autocommit for PEP 249 compliant behaviour (...Erlend E. Aasland2022-11-126-45/+192