summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-1113-23/+23
* bpo-46323: Fix double-free issue for borrowed refs (GH-31272)Dong-hee Na2022-02-111-1/+0
* bpo-44953: Add vectorcall for itemgetter and attrgetter instances (GH-27828)Dennis Sweeney2022-02-101-12/+78
* bpo-46323: Allow alloca(0) for python callback function of ctypes (GH-31249)Dong-hee Na2022-02-101-5/+1
* bpo-46323: Reduce stack usage of ctypes python callback function. (GH-31224)Dong-hee Na2022-02-092-27/+14
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-0843-334/+244
* bpo-46323: Use PyObject_Vectorcall while calling ctypes callback function (GH...Dong-hee Na2022-02-081-38/+40
* bpo-46323 Fix ref leak if ctypes.CFuncPtr raises an error. (GH-31209)Dong-hee Na2022-02-081-0/+1
* bpo-46670: Fix #ifdef in sha3module.c (GH-31180)Victor Stinner2022-02-071-1/+3
* bpo-46670: Remove unused macros in the Modules directory (GH-31194)Victor Stinner2022-02-076-14/+0
* bpo-39277: Fix PY_TIMEOUT_MAX cast in _threadmodule.c (GH-31195)Victor Stinner2022-02-071-1/+1
* bpo-46323: _ctypes.CFuncPtr fails if _argtypes_ is too long (GH-31188)Victor Stinner2022-02-073-10/+17
* bpo-40479: Fix undefined behavior in Modules/_hashopenssl.c (GH-31153)Zackery Spytz2022-02-071-0/+1
* bpo-46670: Test if a macro is defined, not its value (GH-31178)Victor Stinner2022-02-075-12/+12
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-054-4/+14
* closes bpo-46626: Expose IP_BIND_ADDRESS_NO_PORT socket option. (GH-31106)Benjamin Peterson2022-02-031-0/+3
* bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-30696)Petr Viktorin2022-02-022-4/+52
* bpo-45459: Add Py_buffer to limited API (GH-29991)Christian Heimes2022-02-021-1/+51
* Remove Python 3.3 compatibility code from overlapped.c (GH-31049)Kumar Aditya2022-02-021-6/+0
* bpo-46417: signal: move siginfo_type to the module state (GH-30964)Victor Stinner2022-01-271-19/+20
* bpo-40170: PyType_SUPPORTS_WEAKREFS() becomes a regular function (GH-30938)Victor Stinner2022-01-272-3/+3
* bpo-43853: Expand test suite for SQLite UDF's (GH-27642)Erlend Egeberg Aasland2022-01-262-3/+14
* bpo-46513: Remove AC_C_CHAR_UNSIGNED / __CHAR_UNSIGNED__ (GH-30851)Christian Heimes2022-01-261-7/+0
* bpo-29882: Fix portability bug introduced in GH-30774 (#30794)Mark Dickinson2022-01-231-0/+1
* bpo-46417: Clear _io module static objects at exit (GH-30807)Victor Stinner2022-01-221-44/+93
* bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)Kumar Aditya2022-01-221-16/+2
* bpo-46249: Move set lastrowid out of the sqlite3 query loop (GH-30489)Erlend Egeberg Aasland2022-01-221-11/+11
* bpo-46417: Add _PyType_GetSubclasses() function (GH-30761)Victor Stinner2022-01-211-9/+9
* bpo-30512: Add CAN Socket support for NetBSD (GH-30066)Thomas Klausner2022-01-212-3/+7
* bpo-46417: signal uses PyStructSequence_NewType() (GH-30735)Victor Stinner2022-01-211-7/+9
* bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)Victor Stinner2022-01-211-12/+10
* bpo-46417: time module uses PyStructSequence_NewType() (GH-30734)Victor Stinner2022-01-211-37/+81
* bpo-46417: _thread uses PyStructSequence_NewType() (GH-30733)Victor Stinner2022-01-211-12/+14
* bpo-41857: mention timeout argument units in select.poll() and select.depoll(...Zane Bitter2022-01-202-3/+15
* bpo-46028: Calculate base_executable by resolving symlinks in a venv (GH-30144)Steve Dower2022-01-181-1/+12
* bpo-46361: Fix "small" `int` caching (GH-30583)Brandt Bucher2022-01-161-0/+7
* bpo-46258: Streamline isqrt fast path (#30333)Mark Dickinson2022-01-151-14/+43
* bpo-46383: Fix signature of zoneinfo module_free function (GH-30607)Christian Heimes2022-01-151-1/+1
* bpo-46280: Fix tracemalloc_copy_domain() (GH-30591)Victor Stinner2022-01-141-0/+3
* bpo-45953: Statically initialize all the non-object PyInterpreterState fields...Eric Snow2022-01-141-15/+11
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-132-5/+46
* bpo-40479: Fix typo, flag must be set for OpenSSL < 3.0.0 (GH-30584)Christian Heimes2022-01-131-1/+1
* bpo-46070: _PyGC_Fini() untracks objects (GH-30577)Victor Stinner2022-01-131-0/+24
* bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455)Christian Heimes2022-01-131-232/+338
* bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)Christian Heimes2022-01-135-3/+26
* bpo-45953: Statically allocate the main interpreter (and initial thread state...Eric Snow2022-01-121-1/+1
* bpo-40280: Allow to compile _testcapi as builtin module (GH-30559)Christian Heimes2022-01-122-2/+3
* bpo-40280: Add --with-emscripten-target to build for browser or node (GH-30552)Christian Heimes2022-01-121-1/+1
* bpo-46303: Fix fileutils.h compiler warnings (GH-30550)Victor Stinner2022-01-111-0/+6
* bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner2022-01-117-96/+117