summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
* Modify ctypes types with 'official' functions. Backport from trunk,Thomas Heller2008-10-181-1/+1
* Fix issue #3547 for MingW, update comments (backport from trunk).Thomas Heller2008-09-291-3/+5
* Fix issue #3547: ctypes is confused by bitfields of varying integer typesThomas Heller2008-09-241-1/+1
* Issue #2682: ctypes callback functions no longer contain a cyclicThomas Heller2008-04-253-51/+135
* Fix the way methods are created for the _ctypes.COMError exceptionThomas Heller2008-02-061-9/+19
* Revert rev. 59926, it breaks comtypes (I need to further examine this).Thomas Heller2008-01-281-5/+0
* Invert the checks in get_[u]long and get_[u]longlong. The intent wasThomas Heller2008-01-241-19/+15
* Backport from trunk:Thomas Heller2008-01-161-1/+1
* Added NEWS entry, plus:Thomas Heller2008-01-111-0/+5
* Change ctypes version number to 1.0.3 (when Python 2.5.2 is released,Thomas Heller2007-12-191-1/+1
* Issue #1642: Fix segfault in ctypes when trying to delete attributes.Thomas Heller2007-12-182-0/+21
* Fix ctypes on 32-bit systems when Python is configured --with-system-ffi.Thomas Heller2007-10-121-6/+10
* - Fix libffi configure for hppa*-*-linux* | parisc*-*-linux*.Matthias Klose2007-09-042-2/+2
* PyType_stgdict() returns a borrowed reference which must not beThomas Heller2007-07-131-2/+0
* Fix for SF# 1649098: avoid zero-sized array declaration in structure.Thomas Heller2007-07-132-2/+2
* Merged revisions 55896 via svnmerge fromThomas Heller2007-06-152-13/+17
* Merged revisions 55129-55131 via svnmerge fromThomas Heller2007-06-082-11/+17
* Merged revisions 55027 via svnmerge fromThomas Heller2007-05-021-3/+11
* Merged revisions 55025 via svnmerge fromThomas Heller2007-04-303-3/+15
* Fix various minor issues discovered with static analysis using Visual Studio ...Kristján Valur Jónsson2007-04-211-2/+3
* Prevent creation (followed by a segfault) of array types when the sizeThomas Heller2007-03-231-3/+20
* Explain the purpose of the b_needsfree flag. This answers NealsThomas Heller2007-03-221-1/+6
* Back out "Patch #1643874: memory leak in ctypes fixed."Thomas Heller2007-03-221-21/+8
* Merged revisions 54248 via svnmerge fromThomas Heller2007-03-091-18/+0
* Merged revisions 54244 via svnmerge fromThomas Heller2007-03-091-3/+3
* Merged revisions 53556 via svnmerge fromThomas Heller2007-01-251-8/+21
* Add a comment for some code I don't understand. Why would needsfreeNeal Norwitz2007-01-181-0/+1
* Merged revisions 53466 via svnmerge fromThomas Heller2007-01-171-8/+12
* Must update the version number on the extension module as well.Thomas Heller2007-01-101-1/+1
* Fix #1563807: _ctypes built on AIX fails with ld ffi error.Thomas Heller2006-11-281-1/+1
* Fix bug #1598620: A ctypes structure cannot contain itself.Thomas Heller2006-11-241-3/+13
* - Patch #1560695: Add .note.GNU-stack to ctypes' sysv.S so thatMartin v. Löwis2006-10-221-0/+4
* ctypes callback functions only support 'fundamental' result types.Thomas Heller2006-10-171-2/+5
* Backport rev 51820 from Thomas HellerNeal Norwitz2006-09-111-2/+2
* Backport rev 51819 from Thomas HellerNeal Norwitz2006-09-111-2/+2
* Backport of r51379 from trunk:Thomas Heller2006-09-061-0/+16
* Move assert to after NULL check, otherwise we deref NULL in the assert.Neal Norwitz2006-08-191-1/+1
* Remove the special casing of Py_None when converting the return valueThomas Heller2006-08-161-1/+1
* The __repr__ method of a NULL py_object does no longer raise anThomas Heller2006-08-161-1/+1
* Add commented assert statements to check that the result ofThomas Heller2006-08-161-20/+36
* Check for NULL return value from new_CArgObject calls.Thomas Heller2006-08-151-0/+6
* Patch #1536908: Add support for AMD64 / OpenBSD.Thomas Heller2006-08-143-3/+2
* Apply the patch #1532975 plus ideas from the patch #1533481.Thomas Heller2006-08-143-162/+182
* Revert the change that tries to zero out a closure's result storageThomas Heller2006-08-141-15/+5
* Check for NULL return value of GenericCData_new().Thomas Heller2006-08-141-0/+4
* Check for NULL return value from new_CArgObject().Thomas Heller2006-08-141-0/+6
* Remove unused, buggy test function.Thomas Heller2006-08-141-12/+0
* Handle alloca failures.Neal Norwitz2006-08-132-0/+15
* Check returned pointer is valid.Neal Norwitz2006-08-121-0/+6
* When a ctypes C callback function is called, zero out the resultThomas Heller2006-08-111-7/+17