summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
* Add pep-291 compatibility markers.Thomas Heller2006-06-129-2/+37
* I don't know how that happend, but the entire file contents wasThomas Heller2006-06-121-195/+0
* Release the GIL during COM method calls, to avoid deadlocks inThomas Heller2006-06-111-3/+10
* Handle failure of PyMem_Realloc.Thomas Heller2006-06-101-1/+4
* Don't use C++ comment.Thomas Heller2006-06-101-1/+1
* Fix the second occurrence of the problematic printf format.Thomas Heller2006-06-101-5/+1
* Fix a wrong printf format.Thomas Heller2006-06-101-6/+1
* Upgrade to ctypes version 0.9.9.7.Thomas Heller2006-06-106-284/+496
* Fix for foreign functions returning small structures on 64-bit bigThomas Heller2006-06-071-1/+3
* Use the same big-endian hack as in _ctypes/callproc.c for callback functions.Thomas Heller2006-06-061-36/+7
* Add a hack so that foreign functions returning float now do work on 64-bitThomas Heller2006-06-061-1/+6
* Damn - the sentinel was missing. And fix another silly mistake.Thomas Heller2006-06-061-1/+2
* Convert CFieldObject tp_members to tp_getset, since there is noThomas Heller2006-06-061-11/+25
* PyTuple_Pack is not available in Python 2.3, but ctypes must stayThomas Heller2006-05-311-1/+1
* Replace Py_BuildValue("OO") by PyTuple_Pack.Georg Brandl2006-05-261-1/+1
* Fix distutils so that libffi will cross-compile between darwin/x86 and darwin...Bob Ippolito2006-05-261-1/+1
* Add missing files from x86 darwin ctypes patchBob Ippolito2006-05-253-0/+830
* Fix minor typo in prep_cif.cRonald Oussoren2006-05-251-1/+1
* enable darwin/x86 support for libffi and hence ctypes (doesn't yet support --...Bob Ippolito2006-05-259-6/+120
* Clean up.Thomas Heller2006-05-051-6/+1
* Export the 'free' standard C function for use in the test suite.Thomas Heller2006-05-051-0/+5
* Fix build on MIPS for libffi. I haven't tested this yet because IHye-Shik Chang2006-04-263-2/+13
* Fix compiler warnings on Darwin.Thomas Heller2006-04-251-5/+5
* Merge in changes from ctypes 0.9.9.6 upstream version.Thomas Heller2006-04-219-99/+297
* Rename remaining StgDictObject's ffi_type fields to ffi_type_pointer.Thomas Heller2006-04-181-3/+3
* C++ compiler cleanup: the typical few casts, and ... C++ didn't like thatSkip Montanaro2006-04-186-37/+42
* Fix refcounting.Thomas Heller2006-04-181-0/+2
* Fix for FreeBSD. Fixes http://python.org/sf/1470353.Thomas Heller2006-04-151-2/+2
* Fix for a bug found by Armin Rigo, plus test.Thomas Heller2006-04-121-1/+1
* Fix some warnings on HP-UX when using cc/aCCNeal Norwitz2006-04-101-2/+1
* Expose RTLD_LOCAL and RTLD_GLOBAL always from the _ctypes extension module.Thomas Heller2006-04-061-2/+12
* Replace a few more 'char' types with 'signed char', to fix test failuresThomas Heller2006-04-061-5/+5
* Handle error conditions from PyString_ConcatAndDel().Neal Norwitz2006-04-061-1/+6
* Handle ssize_tNeal Norwitz2006-04-061-3/+4
* Explicitely use 'signed char', to avoid problems on platforms with unsigned c...Thomas Heller2006-04-051-26/+26
* Explicitely use 'signed char', to avoid problems on platforms with unsigned c...Thomas Heller2006-04-051-2/+2
* Try to fix the build on Mac OS X 10.3. The 'live_support' segmentThomas Heller2006-04-031-1/+1
* Try to fix the tests on OpenBSD. Apparently OpenBSD passesThomas Heller2006-04-031-2/+2
* Try to build _ctypes on x86 openbsd.Thomas Heller2006-03-302-0/+2
* Fix some int/Py_ssize_t issues which led to compiler warningsThomas Heller2006-03-221-6/+6
* Include <malloc.h> on windows, to avoid warnings when compiling with mingw.Thomas Heller2006-03-224-45/+52
* Avoid a potential double-free bug.Thomas Heller2006-03-202-2/+3
* Apply patch from Martin v. Loewis: Avoid function pointer casts.Thomas Heller2006-03-202-34/+34
* Fix another bug found by Coverty.Thomas Heller2006-03-201-1/+1
* Fix bug found by Coverty.Thomas Heller2006-03-201-1/+1
* Accessing unaligned structure fields works now on all architectures.Thomas Heller2006-03-201-46/+104
* Fix compiler warning.Thomas Heller2006-03-181-1/+1
* Merge changes from the upstream version:Thomas Heller2006-03-172-76/+81
* Fix a leak that would happen under error conditions (found by Coverty).Thomas Heller2006-03-161-0/+1
* Use int 0 as default defval for LCID if nothing has been supplied.Thomas Heller2006-03-161-3/+8