summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
* Speed up PyType_stgdict and PyObject_stgdict.Thomas Heller2006-08-011-2/+11
* Minimal useful docstring for CopyComPointer.Thomas Heller2006-08-011-1/+1
* Fix a potential segfault and various potentail refcount leaksThomas Heller2006-08-011-15/+13
* Patch #1529514: More openbsd platforms for ctypes.Thomas Heller2006-07-282-84/+58
* Remove a useless XXX comment.Thomas Heller2006-07-281-7/+7
* Check the allocation of b_objects and return if there was a failure.Neal Norwitz2006-07-231-2/+11
* Make sure the _ctypes extension can be compiled when WITH_THREAD isThomas Heller2006-07-192-0/+6
* proto was dereffed above and is known to be good. No need for X.Neal Norwitz2006-07-161-1/+1
* Patch #1521817: The index range checking on ctypes arrays containingThomas Heller2006-07-141-10/+8
* Make the prototypes of our private PyUnicode_FromWideChar andThomas Heller2006-07-142-5/+6
* A misspelled preprocessor symbol caused ctypes to be always compiledThomas Heller2006-07-133-11/+11
* Change the ctypes version number to 1.0.0.Thomas Heller2006-07-111-1/+1
* Assigning None to pointer type structure fields possible overwroteThomas Heller2006-07-101-1/+1
* Fixed a segfault when ctypes.wintypes were imported onThomas Heller2006-07-101-2/+9
* Fix bug #1518190: accept any integer or long value in theThomas Heller2006-07-101-8/+19
* Patch #1517790: It is now possible to use custom objects in the ctypesThomas Heller2006-07-061-3/+2
* Revert the change done in svn revision 47206:Thomas Heller2006-07-061-14/+0
* Fix the bitfield test when _ctypes is compiled with MingW. StructuresThomas Heller2006-07-051-2/+2
* Sync the darwin/x86 port libffi with the copy in PyObjC. This fixes a numberRonald Oussoren2006-07-042-84/+116
* Add a new function uses_seh() to the _ctypes extension module. ThisThomas Heller2006-07-031-0/+14
* Fixes so that _ctypes can be compiled with the MingW compiler.Thomas Heller2006-07-032-6/+4
* Cleanup: Remove commented out code.Thomas Heller2006-07-031-22/+1
* Remove now-unused fidding with PY_FORMAT_SIZE_T.Tim Peters2006-06-301-4/+0
* Revert the use of PY_FORMAT_SIZE_T in PyErr_Format.Thomas Heller2006-06-301-1/+5
* Silence compiler warningNeal Norwitz2006-06-301-1/+6
* Protect the thread api calls in the _ctypes extension module withinThomas Heller2006-06-293-1/+22
* 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