summaryrefslogtreecommitdiff
path: root/Modules/_ctypes/_ctypes.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-1/+1
* bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...Serhiy Storchaka2020-04-121-1/+1
* bpo-39481: PEP 585 for a variety of modules (GH-19423)Batuhan Taşkaya2020-04-101-1/+7
* bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883)Victor Stinner2020-03-091-1/+0
* bpo-39573: Add Py_SET_TYPE() function (GH-18394)Victor Stinner2020-02-071-6/+6
* bpo-16575: Disabled checks for union types being passed by value. (GH-17960)Vinay Sajip2020-01-121-0/+18
* bpo-38532: Add missing decrefs in PyCFuncPtr_FromDll() (GH-16857)Zackery Spytz2020-01-031-0/+2
* bpo-38622: Add missing audit events for ctypes module (GH-17158)Steve Dower2019-11-181-0/+21
* bpo-16576: Add checks for bitfields passed by value to functions. (GH-17097)Vinay Sajip2019-11-121-3/+10
* bpo-16575: Add checks for unions passed by value to functions. (GH-16799)Vinay Sajip2019-10-311-0/+24
* closes bpo-38127: _ctypes: PyObject_IsSubclass() should be checked for failur...Zackery Spytz2019-09-121-1/+5
* bpo-36946:Fix possible signed integer overflow when handling slices. (GH-15639)HongWeipeng2019-09-081-1/+2
* bpo-37140: Fix StructUnionType_paramfunc() (GH-15612)Victor Stinner2019-08-301-14/+59
* bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer2019-07-081-1/+1
* bpo-37493: use _PyObject_CallNoArg in more places (GH-14575)Jeroen Demeyer2019-07-041-10/+10
* bpo-37188: Fix a divide-by-zero in arrays of size-0 objects (#13881)Eric Wieser2019-06-071-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-301-30/+30
* bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)Victor Stinner2019-05-271-3/+3
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+16
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Zackery Spytz2019-05-171-2/+4
* ctypes: remove use of legacy unicode API (GH-12340)Inada Naoki2019-04-191-7/+7
* bpo-36504: Fix signed integer overflow in _ctypes.c's PyCArrayType_new(). (GH...Zackery Spytz2019-04-021-1/+1
* bpo-36150: Fix possible assertion failures due to _ctypes.c's PyCData_reduce(...Zackery Spytz2019-03-311-4/+5
* bpo-35947: Fix a compiler warning in _ctypes.c's StructUnionType_paramfunc()....Zackery Spytz2019-03-311-1/+1
* bpo-35947: Update Windows to the current version of libffi (GH-11797)Paul Monson2019-03-291-10/+21
* bpo-36421: Fix a possible double decref in _ctypes.c's PyCArrayType_new(). (G...Zackery Spytz2019-03-251-0/+1
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-021-2/+11
* bpo-35529: Fix a reference counting bug in PyCFuncPtr_FromDll(). (GH-11229)Zackery Spytz2018-12-201-5/+8
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Zackery Spytz2018-12-171-0/+4
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-2/+10
* bpo-32787: Better error handling in ctypes. (#3727)Serhiy Storchaka2018-12-051-79/+163
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-271-17/+17
* bpo-29843: raise AttributeError if given negative _length_ (GH-10029)Tal Einat2018-10-221-5/+20
* bpo-16865: Support arrays >=2GB in ctypes. (GH-3006)Segev Finer2018-05-151-8/+8
* bpo-21983: Fix a crash in ctypes.cast() when passed a ctypes structured data ...Oren Milman2018-05-091-1/+1
* closes bpo-32460: ensure all non-static globals have initializers (#5061)Benjamin Peterson2017-12-311-2/+2
* Fix miscellaneous typos (#4275)luzpaz2017-11-051-1/+1
* bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(), in ...Oren Milman2017-09-251-0/+10
* bpo-31311: Impove error reporting in case the first argument to PyCData_setst...Oren Milman2017-09-241-1/+4
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-2/+0
* bpo-10746: Fix ctypes PEP 3118 type codes for c_long, c_bool, c_int (#31)Pauli Virtanen2017-08-281-2/+67
* bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...Stefan Krah2017-08-211-1/+1
* bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tupl...Oren Milman2017-08-201-1/+3
* Spelling fixes (#2902)Ville Skyttä2017-08-031-1/+1
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)Serhiy Storchaka2017-04-191-1/+1
* Expand the PySlice_GetIndicesEx macro. (#1023)Serhiy Storchaka2017-04-081-6/+4
* bpo-29878: Add global instances of int for 0 and 1. (#852)Serhiy Storchaka2017-03-301-6/+3
* bpo-28129: fix ctypes crashes (#386)orenmn2017-03-021-7/+24
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-20/+10
* Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-1/+1