index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_ctypes
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix typos in docs, error messages and comments (#123336)
Wulian
2024-08-28
1
-2/+2
*
Fix typos in comments (#123201)
Wulian
2024-08-21
1
-2/+2
*
gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...
Serhiy Storchaka
2024-07-19
1
-2/+2
*
gh-113993: Don't immortalize in PyUnicode_InternInPlace; keep immortalizing i...
Petr Viktorin
2024-07-16
1
-3/+8
*
gh-61103: Support float and long double complex types in ctypes module (#121248)
Sergey B Kirpichev
2024-07-03
5
-3/+66
*
gh-61103: Support double complex (_Complex) type in ctypes (#120894)
Sergey B Kirpichev
2024-07-01
5
-1/+77
*
gh-121040: Use __attribute__((fallthrough)) (#121044)
Victor Stinner
2024-06-27
2
-4/+5
*
Use _PyLong_IsNegative instead of _PyLong_Sign if appropriate. (GH-120493)
Serhiy Storchaka
2024-06-24
1
-1/+1
*
gh-117142: Support Importing ctypes in Isolated Interpreters (gh-119991)
Eric Snow
2024-06-03
1
-1/+1
*
gh-97588: Align ctypes struct layout to GCC/MSVC (GH-97702)
Matthias Görgens
2024-05-29
5
-132/+2229
*
gh-119661: Add _Py_SINGLETON() include in Argumenet Clinic (#119712)
Victor Stinner
2024-05-29
1
-1/+4
*
gh-117557: Improve error messages when a string, bytes or bytearray of length...
Serhiy Storchaka
2024-05-28
1
-17/+42
*
gh-117142: Slightly hacky fix for memory leak of StgInfo (GH-119424)
Petr Viktorin
2024-05-23
2
-53/+45
*
gh-117142: ctypes: Clean up c-analyzer .tsv files (GH-117544)
neonene
2024-05-22
1
-6/+0
*
gh-118362: Fix thread safety around lookups from the type cache in the face o...
Dino Viehland
2024-05-06
1
-1/+1
*
gh-116322: Add Py_mod_gil module slot (#116882)
Brett Simmers
2024-05-03
2
-2/+4
*
gh-117142: Port _ctypes to multi-phase init (GH-117181)
neonene
2024-04-10
7
-178/+1109
*
gh-117142: ctypes: Unify meta tp slot functions (GH-117143)
neonene
2024-04-01
3
-73/+46
*
gh-117142: ctypes: Migrate global vars to module state (GH-117189)
neonene
2024-03-29
6
-222/+235
*
gh-114314: ctypes: remove stgdict and switch to heap types (GH-116458)
Petr Viktorin
2024-03-20
6
-1404/+1402
*
gh-108494: Fix Argument Clinic LIMITED_CAPI_REGEX (#116610)
Victor Stinner
2024-03-11
1
-3/+2
*
gh-115882: Reference Unknwn.h for ctypes on Windows (GH-115350)
Yuriy Chernyshov
2024-02-26
1
-0/+4
*
gh-112433: Add optional _align_ attribute to ctypes.Structure (GH-113790)
monkeyman192
2024-02-15
1
-1/+25
*
gh-110190: Fix ctypes structs with array on Windows ARM64 (GH-114753)
Diego Russo
2024-01-30
1
-1/+1
*
gh-103092: Ensure `_ctypes.c` static types are accessed via global state (#11...
neonene
2024-01-22
6
-106/+172
*
gh-103092: Convert some `_ctypes` metatypes to heap types (GH-113620)
AN Long
2024-01-18
2
-281/+141
*
gh-62260: Fix ctypes.Structure subclassing with multiple layers (GH-13374)
Jeffrey Kintscher
2024-01-01
2
-6/+6
*
gh-110190: Fix ctypes structs with array on PPCLE64 (GH-112959)
Diego Russo
2023-12-13
2
-59/+124
*
gh-111650: Ensure pyconfig.h includes Py_GIL_DISABLED on Windows (GH-112778)
Steve Dower
2023-12-13
1
-2/+0
*
gh-110190: Fix ctypes structs with array on Arm (#112604)
Diego Russo
2023-12-05
2
-18/+71
*
gh-111863: Rename `Py_NOGIL` to `Py_GIL_DISABLED` (#111864)
Hugo van Kemenade
2023-11-20
1
-2/+2
*
gh-111789: Use PyDict_GetItemRef() in _ctypes (GH-111828)
Serhiy Storchaka
2023-11-14
2
-78/+61
*
gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)
Serhiy Storchaka
2023-11-03
1
-9/+11
*
gh-108082: Use PyErr_FormatUnraisable() (GH-111580)
Serhiy Storchaka
2023-11-02
1
-2/+1
*
gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED was added to 3.12 (#111584)
Victor Stinner
2023-11-01
1
-2/+2
*
gh-110481: Implement biased reference counting (gh-110764)
Sam Gross
2023-10-30
1
-0/+6
*
gh-110093: Replace trivial Py_BuildValue() with direct C API call (GH-110094)
Serhiy Storchaka
2023-10-20
1
-1/+1
*
gh-85283: Fix _ctypes_test build on Windows in release mode (#111005)
Victor Stinner
2023-10-17
1
-0/+7
*
gh-110964: Remove private _PyArg functions (#110966)
Victor Stinner
2023-10-17
1
-0/+3
*
gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED new in 3.13. (#110969)
Victor Stinner
2023-10-17
1
-1/+4
*
gh-85283: Build errno and _ctypes_test with limited C API (#110955)
Victor Stinner
2023-10-17
1
-3/+4
*
gh-108511: Add C API functions which do not silently ignore errors (GH-109025)
Serhiy Storchaka
2023-09-17
1
-3/+3
*
Add missing `PyDoc_STR` calls (#109393)
Nikita Sobolev
2023-09-15
1
-2/+2
*
gh-106320: Remove private _PyErr_WriteUnraisableMsg() (#108863)
Victor Stinner
2023-09-04
2
-3/+4
*
Revert "gh-46376: Return existing pointer when possible in ctypes (#1… (#10...
Victor Stinner
2023-09-04
1
-35/+0
*
gh-108765: Python.h no longer includes <unistd.h> (#108783)
Victor Stinner
2023-09-02
1
-6/+7
*
gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)
Victor Stinner
2023-08-31
1
-7/+1
*
gh-106320: Remove private _PyTraceback functions (#108453)
Victor Stinner
2023-08-24
1
-2/+4
*
gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)
Victor Stinner
2023-08-24
1
-1/+1
*
gh-106320: Remove private _PyDict functions (#108449)
Victor Stinner
2023-08-24
1
-0/+1
[next]