summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
* Remove duplicated function declaration.Thomas Heller2009-04-162-2/+1
* Remove unneeded code.Thomas Heller2009-04-163-18/+0
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-214-7/+7
* Fix warnings GCC emits where the argument of PyErr_Format is a single variable.Georg Brandl2009-02-131-6/+8
* Issue#5203: ctypes segfaults when passing a unicode string to aThomas Heller2009-02-101-0/+1
* This refactoring should make it easier to add new calling conventions.Thomas Heller2009-02-033-400/+29
* #4077: No need to append \n when calling Py_FatalErrorAmaury Forgeot d'Arc2009-01-171-1/+1
* Fix refcount leak in error cases. Bug found by coverity.Thomas Heller2009-01-131-1/+4
* Issue #4025 againChristian Heimes2008-12-031-1/+1
* Fixed a couple more C99 comments and one occurence of inline.Christian Heimes2008-10-021-2/+2
* Fix issue #3547 for MingW, update comments.Thomas Heller2008-09-291-3/+5
* Fix issue #3547: ctypes is confused by bitfields of varying integer typesThomas Heller2008-09-241-1/+1
* Fix:Neal Norwitz2008-08-241-0/+3
* COM method code is windows specificThomas Heller2008-08-191-1/+4
* Fix a regression introduced by rev. 63792: ctypes function pointersThomas Heller2008-08-191-5/+26
* Properly INCREF reference in Py_buffer.Martin v. Löwis2008-08-141-0/+2
* Make ctypes compatible with Python 2.3, 2.4, and 2.5 again.Thomas Heller2008-07-242-2/+16
* Issue #3313: Contrary to the man page, a failed dlopen() call does notThomas Heller2008-07-151-1/+4
* Issue #3258: Fix an assertion error (in debug build) and a crash (inThomas Heller2008-07-151-1/+12
* Check for memory alloc failureNeal Norwitz2008-06-131-0/+2
* Add an optional 'offset' parameter to byref, defaultingto zero.Thomas Heller2008-06-101-4/+16
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-094-90/+90
* Remove locking part of new buffer protocol.Travis E. Oliphant2008-06-061-5/+0
* Performance improvement: Use PyDict_Get/SetItem instead ofThomas Heller2008-06-061-3/+9
* Issue #1798: Add ctypes calling convention that allows safe access of errno.Thomas Heller2008-06-064-4/+202
* Backport from py3k: Implement the new buffer interface from pep3118Thomas Heller2008-06-054-24/+264
* MacOS X: Enable 4-way universal buildsRonald Oussoren2008-06-052-2/+2
* Revert revisions 63943 and 63942 (Issue #1798: Add ctypes callingThomas Heller2008-06-044-184/+4
* Fix ctypes.set_errno for gcc.Thomas Heller2008-06-041-2/+4
* Issue #1798: Add ctypes calling convention that allows safe access toThomas Heller2008-06-044-4/+182
* Fix misspelled sys.platform name and misspelled filename.Thomas Heller2008-06-021-1/+1
* ctypes NULL function pointers have a boolean False value now.Thomas Heller2008-05-291-21/+21
* Fix compiler warning.Thomas Heller2008-05-291-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-264-93/+93
* Patch #1722225: Support QNX 6.Martin v. Löwis2008-05-233-0/+10
* On HPUX, -fPIC must be used for linking. _ctypes now builds on HP-UXThomas Heller2008-05-201-0/+1
* Add missing return type to dealloc.Georg Brandl2008-04-261-1/+2
* Add from_buffer and from_buffer_copy class methods to ctypes types.Thomas Heller2008-04-251-0/+115
* Remove cyclic reference in CFuncPtr instances; see issue #2682.Thomas Heller2008-04-243-50/+133
* Issue #2616: Implement ctypes.pointer() and ctypes.POINTER() in C forThomas Heller2008-04-143-0/+79
* Performance improvements.Thomas Heller2008-04-111-3/+3
* Move backwards compatibility macro to the correct place;Thomas Heller2008-04-111-1/+1
* More files from libffi 3.0.5.Thomas Heller2008-04-044-22/+20
* Sync with files from the just released libffi 3.0.5 version.Thomas Heller2008-04-045-2/+1246
* Issue #2543: Make ctypes compatible (again) with Python 2.3, 2.4, and 2.5.Thomas Heller2008-04-042-26/+38
* Make _ctypes.c PY_SSIZE_T_CLEAN.Thomas Heller2008-03-251-2/+4
* Include <alloca.h> on Solaris, see issue #1506.Thomas Heller2008-03-181-0/+4
* Remove unneeded initializer.Thomas Heller2008-03-141-1/+1
* Issue 1872: Changed the struct module typecode from 't' to '?', forThomas Heller2008-03-053-8/+17
* Try to fix the build for PY_LINUX.Thomas Heller2008-03-041-0/+1