summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-117142: Support Importing ctypes in Isolated Interpreters (gh-120008)Miss Islington (bot)2024-06-031-1/+1
* [3.13] gh-117142: Slightly hacky fix for memory leak of StgInfo (GH-119424) (...Miss Islington (bot)2024-05-302-53/+45
* [3.13] gh-119661: Add _Py_SINGLETON() include in Argumenet Clinic (#119712) (...Victor Stinner2024-05-291-1/+4
* gh-118362: Fix thread safety around lookups from the type cache in the face o...Dino Viehland2024-05-061-1/+1
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-032-2/+4
* gh-117142: Port _ctypes to multi-phase init (GH-117181)neonene2024-04-107-178/+1109
* gh-117142: ctypes: Unify meta tp slot functions (GH-117143)neonene2024-04-013-73/+46
* gh-117142: ctypes: Migrate global vars to module state (GH-117189)neonene2024-03-296-222/+235
* gh-114314: ctypes: remove stgdict and switch to heap types (GH-116458)Petr Viktorin2024-03-206-1404/+1402
* gh-108494: Fix Argument Clinic LIMITED_CAPI_REGEX (#116610)Victor Stinner2024-03-111-3/+2
* gh-115882: Reference Unknwn.h for ctypes on Windows (GH-115350)Yuriy Chernyshov2024-02-261-0/+4
* gh-112433: Add optional _align_ attribute to ctypes.Structure (GH-113790)monkeyman1922024-02-151-1/+25
* gh-110190: Fix ctypes structs with array on Windows ARM64 (GH-114753)Diego Russo2024-01-301-1/+1
* gh-103092: Ensure `_ctypes.c` static types are accessed via global state (#11...neonene2024-01-226-106/+172
* gh-103092: Convert some `_ctypes` metatypes to heap types (GH-113620)AN Long2024-01-182-281/+141
* gh-62260: Fix ctypes.Structure subclassing with multiple layers (GH-13374)Jeffrey Kintscher2024-01-012-6/+6
* gh-110190: Fix ctypes structs with array on PPCLE64 (GH-112959)Diego Russo2023-12-132-59/+124
* gh-111650: Ensure pyconfig.h includes Py_GIL_DISABLED on Windows (GH-112778)Steve Dower2023-12-131-2/+0
* gh-110190: Fix ctypes structs with array on Arm (#112604)Diego Russo2023-12-052-18/+71
* gh-111863: Rename `Py_NOGIL` to `Py_GIL_DISABLED` (#111864)Hugo van Kemenade2023-11-201-2/+2
* gh-111789: Use PyDict_GetItemRef() in _ctypes (GH-111828)Serhiy Storchaka2023-11-142-78/+61
* gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)Serhiy Storchaka2023-11-031-9/+11
* gh-108082: Use PyErr_FormatUnraisable() (GH-111580)Serhiy Storchaka2023-11-021-2/+1
* gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED was added to 3.12 (#111584)Victor Stinner2023-11-011-2/+2
* gh-110481: Implement biased reference counting (gh-110764)Sam Gross2023-10-301-0/+6
* gh-110093: Replace trivial Py_BuildValue() with direct C API call (GH-110094)Serhiy Storchaka2023-10-201-1/+1
* gh-85283: Fix _ctypes_test build on Windows in release mode (#111005)Victor Stinner2023-10-171-0/+7
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-0/+3
* gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED new in 3.13. (#110969)Victor Stinner2023-10-171-1/+4
* gh-85283: Build errno and _ctypes_test with limited C API (#110955)Victor Stinner2023-10-171-3/+4
* gh-108511: Add C API functions which do not silently ignore errors (GH-109025)Serhiy Storchaka2023-09-171-3/+3
* Add missing `PyDoc_STR` calls (#109393)Nikita Sobolev2023-09-151-2/+2
* gh-106320: Remove private _PyErr_WriteUnraisableMsg() (#108863)Victor Stinner2023-09-042-3/+4
* Revert "gh-46376: Return existing pointer when possible in ctypes (#1… (#10...Victor Stinner2023-09-041-35/+0
* gh-108765: Python.h no longer includes <unistd.h> (#108783)Victor Stinner2023-09-021-6/+7
* gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)Victor Stinner2023-08-311-7/+1
* gh-106320: Remove private _PyTraceback functions (#108453)Victor Stinner2023-08-241-2/+4
* gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)Victor Stinner2023-08-241-1/+1
* gh-106320: Remove private _PyDict functions (#108449)Victor Stinner2023-08-241-0/+1
* gh-108314: Add PyDict_ContainsString() function (#108323)Victor Stinner2023-08-241-14/+20
* gh-107689: Add docstring to `ctypes.Array` (#107697)Kostya Farber2023-08-101-2/+12
* gh-107659: Add docstrings for ctypes.pointer and ctypes.POINTER (#107660)Tomas R2023-08-082-5/+77
* gh-107455: ctypes: Improve error messages when converting to an incompatible ...Tomas R2023-08-031-9/+9
* gh-46376: Return existing pointer when possible in ctypes (#107131)Konstantin2023-07-311-0/+29
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-252-10/+10
* gh-86493: Use PyModule_Add() instead of PyModule_AddObjectRef() (GH-106860)Serhiy Storchaka2023-07-181-7/+1
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-123-15/+15
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-1/+0
* gh-105927: _ctypes use PyWeakref_GetRef() (#105964)Victor Stinner2023-06-211-18/+26
* _ctypes callbacks.c uses _Py_COMP_DIAG_IGNORE_DEPR_DECLS (#105732)Victor Stinner2023-06-141-16/+20