summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* Revert "gh-104469 : Convert _testcapi/vectorcall_limited.c to use AC … (gh-...Dong-hee Na2023-08-142-68/+4
* gh-107938: Synchonise the signature of of sqlite3.connect and sqlite3.Connect...Erlend E. Aasland2023-08-143-18/+61
* gh-107880: Teach Argument Clinic to clone __init__ and __new__ methods (#107885)Erlend E. Aasland2023-08-132-1/+201
* Improve `_typing.__doc__` (#107908)Nikita Sobolev2023-08-131-1/+1
* gh-104469 : Convert _testcapi/vectorcall_limited.c to use AC (gh-107857)nahyeon2023-08-122-4/+68
* gh-106844: Fix issues in _winapi.LCMapStringEx (GH-107832)Serhiy Storchaka2023-08-112-16/+30
* gh-84805: Autogenerate signature for METH_NOARGS and METH_O extension functio...Serhiy Storchaka2023-08-111-9/+55
* GH-106485: Handle dict subclasses correctly when dematerializing `__dict__` (...Mark Shannon2023-08-101-0/+36
* gh-95065: Argument Clinic: Add functional tests of deprecated positionals (#1...Erlend E. Aasland2023-08-102-1/+1233
* gh-107689: Add docstring to `ctypes.Array` (#107697)Kostya Farber2023-08-101-2/+12
* GH-107812: extend `socket`'s netlink support to FreeBSD (gh-107813)Mina Galić2023-08-101-0/+2
* gh-91054: make code watcher tests resilient to other watchers (#107821)Carl Meyer2023-08-091-3/+11
* gh-107659: Add docstrings for ctypes.pointer and ctypes.POINTER (#107660)Tomas R2023-08-082-5/+77
* gh-107735: Add C API tests for PySys_GetObject() and PySys_SetObject() (GH-10...Serhiy Storchaka2023-08-071-0/+41
* gh-107178: Add the C API tests for the Abstract Objects Layer (GH-107179)Serhiy Storchaka2023-08-075-163/+1026
* GH-84436: Skip refcounting for known immortals (GH-107605)Brandt Bucher2023-08-044-9/+9
* Add some GC stats to Py_STATS (GH-107581)Mark Shannon2023-08-041-0/+18
* gh-107609: Fix duplicate module check in Argument Clinic (#107610)Erlend E. Aasland2023-08-041-2/+1
* gh-107077: Raise SSLCertVerificationError even if the error is set via SSL_ER...Pablo Galindo Salgado2023-08-031-0/+4
* gh-107455: ctypes: Improve error messages when converting to an incompatible ...Tomas R2023-08-031-9/+9
* gh-105481: the ENABLE_SPECIALIZATION flag does not need to be generated by th...Irit Katriel2023-08-011-0/+9
* gh-89013: Improve the performance of methodcaller (lazy version) (gh-107201)Pieter Eendebak2023-08-011-23/+112
* gh-46376: Return existing pointer when possible in ctypes (#107131)Konstantin2023-07-311-0/+29
* gh-106263: Fix segfault in `signaldict_repr` in `_decimal` module (#106270)Charlie Zhao2023-07-301-4/+28
* gh-106881: Check for linux/limits.h before including it (#107397)justdan62023-07-281-1/+1
* gh-106078: Isolate `decimal` module (#107287)Charlie Zhao2023-07-281-182/+269
* gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-107359)Eric Snow2023-07-274-31/+21
* gh-104432: Use `memcpy()` to avoid misaligned loads (#104433)Christopher Chavez2023-07-272-7/+25
* gh-103731: Remove unneeded checks for TCL_WIDE_INT_TYPE (GH-103732)Christopher Chavez2023-07-271-4/+0
* gh-107279 Add `<stddef.h>` to `Modules/zlibmodule.c` to fix failing builds (#...shailshouryya2023-07-271-0/+1
* gh-103735: Tkinter: remove handling for uninteresting "procbody" Tcl value ty...Christopher Chavez2023-07-261-6/+0
* gh-106350: Tkinter: do not ignore return value of `mp_init()` (GH-106351)Christopher Chavez2023-07-251-2/+3
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-2548-253/+261
* gh-86493: Modernize modules initialization code (GH-106858)Serhiy Storchaka2023-07-2525-275/+78
* gh-106320: Remove private _PyMem API (#107187)Victor Stinner2023-07-243-15/+18
* gh-106320: Remove private _PyDict C API (#107145)Victor Stinner2023-07-242-3/+5
* Docs: fix typo in os.pwrite docstring (#107087)Jérôme Carretero2023-07-232-4/+4
* gh-106320: Remove _PyBytes_Join() C API (#107144)Victor Stinner2023-07-231-1/+2
* gh-106320: Remove private _PyObject C API (#107147)Victor Stinner2023-07-233-76/+81
* gh-106320: Remove _PyIsSelectable_fd() C API (#107142)Victor Stinner2023-07-231-0/+1
* gh-107122: Add clear method to dbm.ndbm module (gh-107126)Dong-hee Na2023-07-232-1/+56
* gh-107122: Add clear method to dbm.gdbm.module (gh-107127)Dong-hee Na2023-07-232-1/+55
* gh-106320: Remove private _PyInterpreterID C API (#107053)Victor Stinner2023-07-223-4/+4
* gh-106320: Move private _PySet API to the internal API (#107041)Victor Stinner2023-07-222-0/+2
* gh-106320: Remove _PyOS_ReadlineTState API (#107034)Victor Stinner2023-07-221-0/+3
* gh-106320: Move _PyNone_Type to the internal C API (#107030)Victor Stinner2023-07-221-0/+1
* gh-106320: Move private _PyHash API to the internal C API (#107026)Victor Stinner2023-07-224-1/+9
* gh-106004: Add PyDict_GetItemRef() function (#106005)Victor Stinner2023-07-211-0/+191
* gh-47146: Fix reference counting in _testcapi.structmember initializer (GH-10...Serhiy Storchaka2023-07-211-1/+1
* gh-105481: do not auto-generate pycore_intrinsics.h (#106913)Irit Katriel2023-07-202-1/+94