summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
* gh-112015: Implement `ctypes.memoryview_at()` (GH-112018)Rian Hunter2025-01-031-0/+17
* gh-127295: ctypes: Switch field accessors to fixed-width integers (GH-127297)Petr Viktorin2024-12-204-652/+501
* gh-127946: Use a critical section for `CFuncPtr` attributes (GH-128109)Peter Bierma2024-12-202-29/+245
* gh-126742: Add _PyErr_SetLocaleString, use it for gdbm & dlerror messages (GH...Bénédikt Tran2024-12-172-41/+25
* gh-127870: Detect recursive calls in ctypes _as_parameter_ handling (#127872)Victor Stinner2024-12-131-1/+21
* gh-126937: ctypes: fix TypeError when a field's size is >65535 bytes (GH-126938)Melissa0x1f9922024-12-102-4/+10
* gh-126554: ctypes: Correctly handle NULL dlsym values (GH-126555)George Alexopoulos2024-11-152-31/+95
* gh-122943: Add the varpos parameter in _PyArg_UnpackKeywords (GH-126564)Serhiy Storchaka2024-11-082-14/+26
* gh-126035: add missing whitespace to *Py_EnterRecursiveCall() messages (#126036)Bénédikt Tran2024-10-271-1/+1
* gh-125206: Bug in ctypes with old libffi is fixed (#125322)Mikhail Efimov2024-10-155-15/+11
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)Victor Stinner2024-10-091-2/+2
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#125195)Victor Stinner2024-10-091-2/+2
* gh-100980: ctypes: Test, document, and fix finalizing _fields_ (GH-124292)Petr Viktorin2024-09-241-16/+15
* gh-124153: Implement `PyType_GetBaseByToken()` and `Py_tp_token` slot (GH-124...neonene2024-09-182-8/+17
* gh-110190: Fix ctypes structs with array on SPARC (GH-118233)Jakub Kulík2024-09-171-1/+1
* gh-97588: remove unused functions in _ctypes/cfield.c (GH-124010)Irit Katriel2024-09-161-36/+0
* gh-97588: Move ctypes struct/union layout logic to Python (GH-123352)Petr Viktorin2024-09-055-634/+397
* Fix typos in docs, error messages and comments (#123336)Wulian2024-08-281-2/+2
* Fix typos in comments (#123201)Wulian2024-08-211-2/+2
* gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...Serhiy Storchaka2024-07-191-2/+2
* gh-113993: Don't immortalize in PyUnicode_InternInPlace; keep immortalizing i...Petr Viktorin2024-07-161-3/+8
* gh-61103: Support float and long double complex types in ctypes module (#121248)Sergey B Kirpichev2024-07-035-3/+66
* gh-61103: Support double complex (_Complex) type in ctypes (#120894)Sergey B Kirpichev2024-07-015-1/+77
* gh-121040: Use __attribute__((fallthrough)) (#121044)Victor Stinner2024-06-272-4/+5
* Use _PyLong_IsNegative instead of _PyLong_Sign if appropriate. (GH-120493)Serhiy Storchaka2024-06-241-1/+1
* gh-117142: Support Importing ctypes in Isolated Interpreters (gh-119991)Eric Snow2024-06-031-1/+1
* gh-97588: Align ctypes struct layout to GCC/MSVC (GH-97702)Matthias Görgens2024-05-295-132/+2229
* gh-119661: Add _Py_SINGLETON() include in Argumenet Clinic (#119712)Victor Stinner2024-05-291-1/+4
* gh-117557: Improve error messages when a string, bytes or bytearray of length...Serhiy Storchaka2024-05-281-17/+42
* gh-117142: Slightly hacky fix for memory leak of StgInfo (GH-119424)Petr Viktorin2024-05-232-53/+45
* gh-117142: ctypes: Clean up c-analyzer .tsv files (GH-117544)neonene2024-05-221-6/+0
* 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