summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes/_ctypes.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #19437: Fix Array_subscript() of ctypes, handle Array_item() failureVictor Stinner2013-10-291-0/+4
* Issue #18408: Fix _ctypes_alloc_format_string(), raise MemoryError on memoryVictor Stinner2013-10-291-1/+3
* Issue #19356: Avoid using a C variabled named "_self", it's a reserved word i...Antoine Pitrou2013-10-231-40/+40
|\
| * Issue #19356: Avoid using a C variabled named "_self", it's a reserved word i...Antoine Pitrou2013-10-231-40/+40
* | Re #18521: fix not-quite-C syntax that works only because the PyXXX_Check are...Georg Brandl2013-10-141-1/+1
* | Issue #18701: Remove support of old CPython versions (<3.0) from C code.Serhiy Storchaka2013-08-161-22/+2
* | Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.Christian Heimes2013-07-261-1/+1
|\ \ | |/
| * Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.Christian Heimes2013-07-261-1/+1
* | Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj()Christian Heimes2013-07-211-1/+1
|\ \ | |/
| * Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj()Christian Heimes2013-07-211-1/+1
* | Fix fishy sizeof(Py_ssize_t *).Christian Heimes2013-07-201-1/+1
|/
* Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-3/+21
|\
| * Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-3/+21
* | merge 3.2Benjamin Peterson2012-12-151-2/+0
|\ \ | |/
| * remove dead codeBenjamin Peterson2012-12-151-2/+0
* | Issue #16628: Fix a memory leak in ctypes.resize().Antoine Pitrou2012-12-081-1/+1
|\ \ | |/
| * Issue #16628: Fix a memory leak in ctypes.resize().Antoine Pitrou2012-12-081-1/+1
* | - Issue #13840: Fix ctypes.create_string_buffer exception message and docs.Meador Inge2012-01-261-1/+1
|\ \ | |/
| * - Issue #13840: Fix ctypes.create_string_buffer exception message and docs.Meador Inge2012-01-261-1/+1
* | Use the new Unicode APIVictor Stinner2011-11-221-2/+2
* | ctypes check for PyUnicode_GET_SIZE() failureVictor Stinner2011-11-211-1/+7
* | Issue #13350: Replace most usages of PyUnicode_Format by PyUnicode_FromFormat.Amaury Forgeot d'Arc2011-11-061-21/+3
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-1/+3
* | Implement PEP 393.Martin v. Löwis2011-09-281-4/+2
* | Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.Meador Inge2011-09-281-0/+1
|\ \ | |/
| * Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.Meador Inge2011-09-281-0/+1
* | Merge from 3.2:Amaury Forgeot d'Arc2011-08-301-42/+43
|\ \ | |/
| * Issue #11241: subclasses of ctypes.Array can now be subclassed.Amaury Forgeot d'Arc2011-08-301-40/+39
| * Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed toAmaury Forgeot d'Arc2011-08-301-2/+4
* | merge 3.2Benjamin Peterson2011-03-261-20/+54
|\ \ | |/
| * merge 3.1Benjamin Peterson2011-03-261-20/+54
| |\
| | * always check return value of PyObject_IsInstance for errorBenjamin Peterson2011-03-261-19/+44
| | * check possible recursive _as_parameter_ to prevent segfault (closes #1838)Benjamin Peterson2011-03-261-1/+10
* | | #11565: Merge with 3.2.Ezio Melotti2011-03-161-1/+1
|\ \ \ | |/ /
| * | #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
| |\ \ | | |/
| | * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| | * Merged revisions 83841,84741 via svnmerge fromHirokazu Yamamoto2010-09-121-0/+7
| | * Fix buildbot issues due to _ctypes failing to compile in 3.1.Antoine Pitrou2010-08-101-7/+1
| | * Merged revisions 83837,83841 via svnmerge fromThomas Heller2010-08-081-1/+7
| | * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-4123/+4123
| | * Merged revisions 75797 via svnmerge fromGeorg Brandl2009-10-271-3/+3
| | * Merged revisions 74949 via svnmerge fromThomas Heller2009-09-191-11/+0
| | * Merged revisions 74922 via svnmerge fromThomas Heller2009-09-181-2/+5
| | * Merged revisions 74918 via svnmerge fromThomas Heller2009-09-181-58/+73
* | | Remove useless argument of _PyUnicode_AsDefaultEncodedString()Victor Stinner2011-03-021-1/+1
|/ /
* | Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-041-3/+3
* | Merge branches/pep-0384.Martin v. Löwis2010-12-031-3/+3
* | Fix type of hash function.Georg Brandl2010-10-181-1/+1
* | Fixed refcount bug. I placed Py_INCREF in create_comerror() for compatibilityHirokazu Yamamoto2010-09-121-0/+1