| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a new function uses_seh() to the _ctypes extension module. This | Thomas Heller | 2006-07-03 | 1 | -0/+14 |
|
|
* | Fixes so that _ctypes can be compiled with the MingW compiler. | Thomas Heller | 2006-07-03 | 2 | -6/+4 |
|
|
* | Cleanup: Remove commented out code. | Thomas Heller | 2006-07-03 | 1 | -22/+1 |
|
|
* | Remove now-unused fidding with PY_FORMAT_SIZE_T. | Tim Peters | 2006-06-30 | 1 | -4/+0 |
|
|
* | Revert the use of PY_FORMAT_SIZE_T in PyErr_Format. | Thomas Heller | 2006-06-30 | 1 | -1/+5 |
|
|
* | Silence compiler warning | Neal Norwitz | 2006-06-30 | 1 | -1/+6 |
|
|
* | Protect the thread api calls in the _ctypes extension module within | Thomas Heller | 2006-06-29 | 3 | -1/+22 |
|
|
* | Add pep-291 compatibility markers. | Thomas Heller | 2006-06-12 | 9 | -2/+37 |
|
|
* | I don't know how that happend, but the entire file contents was | Thomas Heller | 2006-06-12 | 1 | -195/+0 |
|
|
* | Release the GIL during COM method calls, to avoid deadlocks in | Thomas Heller | 2006-06-11 | 1 | -3/+10 |
|
|
* | Handle failure of PyMem_Realloc. | Thomas Heller | 2006-06-10 | 1 | -1/+4 |
|
|
* | Don't use C++ comment. | Thomas Heller | 2006-06-10 | 1 | -1/+1 |
|
|
* | Fix the second occurrence of the problematic printf format. | Thomas Heller | 2006-06-10 | 1 | -5/+1 |
|
|
* | Fix a wrong printf format. | Thomas Heller | 2006-06-10 | 1 | -6/+1 |
|
|
* | Upgrade to ctypes version 0.9.9.7. | Thomas Heller | 2006-06-10 | 6 | -284/+496 |
|
|
* | Fix for foreign functions returning small structures on 64-bit big | Thomas Heller | 2006-06-07 | 1 | -1/+3 |
|
|
* | Use the same big-endian hack as in _ctypes/callproc.c for callback functions. | Thomas Heller | 2006-06-06 | 1 | -36/+7 |
|
|
* | Add a hack so that foreign functions returning float now do work on 64-bit | Thomas Heller | 2006-06-06 | 1 | -1/+6 |
|
|
* | Damn - the sentinel was missing. And fix another silly mistake. | Thomas Heller | 2006-06-06 | 1 | -1/+2 |
|
|
* | Convert CFieldObject tp_members to tp_getset, since there is no | Thomas Heller | 2006-06-06 | 1 | -11/+25 |
|
|
* | PyTuple_Pack is not available in Python 2.3, but ctypes must stay | Thomas Heller | 2006-05-31 | 1 | -1/+1 |
|
|
* | Replace Py_BuildValue("OO") by PyTuple_Pack. | Georg Brandl | 2006-05-26 | 1 | -1/+1 |
|
|
* | Fix distutils so that libffi will cross-compile between darwin/x86 and darwin... | Bob Ippolito | 2006-05-26 | 1 | -1/+1 |
|
|
* | Add missing files from x86 darwin ctypes patch | Bob Ippolito | 2006-05-25 | 3 | -0/+830 |
|
|
* | Fix minor typo in prep_cif.c | Ronald Oussoren | 2006-05-25 | 1 | -1/+1 |
|
|
* | enable darwin/x86 support for libffi and hence ctypes (doesn't yet support --... | Bob Ippolito | 2006-05-25 | 9 | -6/+120 |
|
|
* | Clean up. | Thomas Heller | 2006-05-05 | 1 | -6/+1 |
|
|
* | Export the 'free' standard C function for use in the test suite. | Thomas Heller | 2006-05-05 | 1 | -0/+5 |
|
|
* | Fix build on MIPS for libffi. I haven't tested this yet because I | Hye-Shik Chang | 2006-04-26 | 3 | -2/+13 |
|
|
* | Fix compiler warnings on Darwin. | Thomas Heller | 2006-04-25 | 1 | -5/+5 |
|
|
* | Merge in changes from ctypes 0.9.9.6 upstream version. | Thomas Heller | 2006-04-21 | 9 | -99/+297 |
|
|
* | Rename remaining StgDictObject's ffi_type fields to ffi_type_pointer. | Thomas Heller | 2006-04-18 | 1 | -3/+3 |
|
|
* | C++ compiler cleanup: the typical few casts, and ... C++ didn't like that | Skip Montanaro | 2006-04-18 | 6 | -37/+42 |
|
|
* | Fix refcounting. | Thomas Heller | 2006-04-18 | 1 | -0/+2 |
|
|
* | Fix for FreeBSD. Fixes http://python.org/sf/1470353. | Thomas Heller | 2006-04-15 | 1 | -2/+2 |
|
|
* | Fix for a bug found by Armin Rigo, plus test. | Thomas Heller | 2006-04-12 | 1 | -1/+1 |
|
|
* | Fix some warnings on HP-UX when using cc/aCC | Neal Norwitz | 2006-04-10 | 1 | -2/+1 |
|
|
* | Expose RTLD_LOCAL and RTLD_GLOBAL always from the _ctypes extension module. | Thomas Heller | 2006-04-06 | 1 | -2/+12 |
|
|
* | Replace a few more 'char' types with 'signed char', to fix test failures | Thomas Heller | 2006-04-06 | 1 | -5/+5 |
|
|
* | Handle error conditions from PyString_ConcatAndDel(). | Neal Norwitz | 2006-04-06 | 1 | -1/+6 |
|
|
* | Handle ssize_t | Neal Norwitz | 2006-04-06 | 1 | -3/+4 |
|
|
* | Explicitely use 'signed char', to avoid problems on platforms with unsigned c... | Thomas Heller | 2006-04-05 | 1 | -26/+26 |
|
|
* | Explicitely use 'signed char', to avoid problems on platforms with unsigned c... | Thomas Heller | 2006-04-05 | 1 | -2/+2 |
|
|
* | Try to fix the build on Mac OS X 10.3. The 'live_support' segment | Thomas Heller | 2006-04-03 | 1 | -1/+1 |
|
|
* | Try to fix the tests on OpenBSD. Apparently OpenBSD passes | Thomas Heller | 2006-04-03 | 1 | -2/+2 |
|
|
* | Try to build _ctypes on x86 openbsd. | Thomas Heller | 2006-03-30 | 2 | -0/+2 |
|
|
* | Fix some int/Py_ssize_t issues which led to compiler warnings | Thomas Heller | 2006-03-22 | 1 | -6/+6 |
|
|
* | Include <malloc.h> on windows, to avoid warnings when compiling with mingw. | Thomas Heller | 2006-03-22 | 4 | -45/+52 |
|
|
* | Avoid a potential double-free bug. | Thomas Heller | 2006-03-20 | 2 | -2/+3 |
|
|
* | Apply patch from Martin v. Loewis: Avoid function pointer casts. | Thomas Heller | 2006-03-20 | 2 | -34/+34 |
|
|