| Commit message (Expand) | Author | Age | Files | Lines |
* | Oops, these tests do not run on Windows CE. | Thomas Heller | 2007-05-04 | 1 | -15/+16 |
|
|
* | Do not truncate 64-bit pointers to 32-bit integers. | Thomas Heller | 2007-05-04 | 1 | -0/+27 |
|
|
* | Fix some ctypes test crashes, when running with a debug Python | Thomas Heller | 2007-05-04 | 3 | -4/+11 |
|
|
* | Whitespace normalization. Ugh, we really need to do this more often. | Neal Norwitz | 2007-04-25 | 2 | -3/+3 |
|
|
* | Patch #1649190: Adding support for _Bool to ctypes as c_bool, by David Remahl. | Thomas Heller | 2007-03-13 | 3 | -3/+33 |
|
|
* | Bug #1651235: When a tuple was passed to a ctypes function call, | Thomas Heller | 2007-03-09 | 1 | -1/+13 |
|
|
* | Fix bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0) | Thomas Heller | 2007-03-09 | 2 | -2/+4 |
|
|
* | patch #1610795: BSD version of ctypes.util.find_library, by Martin | Thomas Heller | 2007-01-12 | 1 | -28/+50 |
|
|
* | Avoid warnings in the test suite because ctypes.wintypes cannot be | Thomas Heller | 2007-01-12 | 1 | -1/+2 |
|
|
* | Correct the comments: the code is right. | Thomas Heller | 2007-01-11 | 1 | -2/+2 |
|
|
* | Fixes for 64-bit Windows: In ctypes.wintypes, correct the definitions | Thomas Heller | 2007-01-11 | 2 | -5/+30 |
|
|
* | Change the ctypes version number to "1.1.0". | Thomas Heller | 2007-01-10 | 1 | -1/+1 |
|
|
* | Verify the sizes of the basic ctypes data types against the struct | Thomas Heller | 2007-01-09 | 1 | -0/+28 |
|
|
* | Fix a bad assumption that all objects assigned to '__loader__' on a module | Brett Cannon | 2006-12-06 | 1 | -1/+2 |
|
|
* | Fix bug #1598620: A ctypes structure cannot contain itself. | Thomas Heller | 2006-11-24 | 1 | -0/+30 |
|
|
* | ctypes callback functions only support 'fundamental' result types. | Thomas Heller | 2006-10-17 | 1 | -0/+13 |
|
|
* | The cast function did not accept c_char_p or c_wchar_p instances | Thomas Heller | 2006-09-07 | 1 | -0/+16 |
|
|
* | Anonymous structure fields that have a bit-width specified did not work, | Thomas Heller | 2006-09-07 | 1 | -0/+9 |
|
|
* | Port _ctypes.pyd to win64 on AMD64. | Thomas Heller | 2006-08-25 | 2 | -1/+4 |
|
|
* | Remove the special casing of Py_None when converting the return value | Thomas Heller | 2006-08-16 | 2 | -0/+2 |
|
|
* | The __repr__ method of a NULL py_object does no longer raise an | Thomas Heller | 2006-08-16 | 2 | -0/+10 |
|
|
* | Apply the patch #1532975 plus ideas from the patch #1533481. | Thomas Heller | 2006-08-14 | 4 | -20/+226 |
|
|
* | Remove code that is no longer used (ctypes.com). | Thomas Heller | 2006-07-27 | 1 | -38/+7 |
|
|
* | Patch #1521817: The index range checking on ctypes arrays containing | Thomas Heller | 2006-07-14 | 1 | -65/+0 |
|
|
* | Fix #1521375. When running with root priviledges, 'gcc -o /dev/null' | Thomas Heller | 2006-07-13 | 1 | -1/+9 |
|
|
* | Fix #1467450: ctypes now uses RTLD_GLOBAL by default on OSX 10.3 to | Thomas Heller | 2006-07-12 | 1 | -1/+18 |
|
|
* | Change the ctypes version number to 1.0.0. | Thomas Heller | 2006-07-11 | 1 | -1/+1 |
|
|
* | When a foreign function is retrived by calling __getitem__ on a ctypes | Thomas Heller | 2006-07-11 | 1 | -2/+3 |
|
|
* | Assigning None to pointer type structure fields possible overwrote | Thomas Heller | 2006-07-10 | 1 | -0/+10 |
|
|
* | Fix bug #1518190: accept any integer or long value in the | Thomas Heller | 2006-07-10 | 1 | -0/+17 |
|
|
* | Patch #1517790: It is now possible to use custom objects in the ctypes | Thomas Heller | 2006-07-06 | 1 | -0/+35 |
|
|
* | The test that calls a function with invalid arguments and catches the | Thomas Heller | 2006-07-06 | 1 | -9/+5 |
|
|
* | Revert the change done in svn revision 47206: | Thomas Heller | 2006-07-06 | 1 | -5/+9 |
|
|
* | Add a new function uses_seh() to the _ctypes extension module. This | Thomas Heller | 2006-07-03 | 1 | -9/+5 |
|
|
* | Don't run the doctests with Python 2.3 because it doesn't have the ELLIPSIS f... | Thomas Heller | 2006-07-03 | 1 | -4/+8 |
|
|
* | Next try to fix the OpenBSD buildbot tests: | Thomas Heller | 2006-06-19 | 1 | -9/+1 |
|
|
* | Try to repair the failing test on the OpenBSD buildbot. Trial and error... | Thomas Heller | 2006-06-19 | 1 | -1/+1 |
|
|
* | Add an __all__ list, since this module does 'from ctypes import *'. | Thomas Heller | 2006-06-14 | 1 | -0/+16 |
|
|
* | Fix docstring. | Thomas Heller | 2006-06-14 | 1 | -1/+1 |
|
|
* | Add back WCHAR, UINT, DOUBLE, _LARGE_INTEGER, _ULARGE_INTEGER. | Thomas Heller | 2006-06-13 | 1 | -3/+13 |
|
|
* | Add some windows datatypes that were missing from this file, and add | Thomas Heller | 2006-06-13 | 1 | -24/+70 |
|
|
* | Add pep-291 compatibility markers. | Thomas Heller | 2006-06-12 | 8 | -0/+24 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-06-11 | 2 | -2/+2 |
|
|
* | Fix errors found by pychecker | Neal Norwitz | 2006-06-11 | 1 | -2/+1 |
|
|
* | Upgrade to ctypes version 0.9.9.7. | Thomas Heller | 2006-06-10 | 8 | -30/+308 |
|
|
* | Specify argtypes for all test functions. Maybe that helps on strange ;-) arch... | Thomas Heller | 2006-06-06 | 1 | -0/+8 |
|
|
* | Normalized a few cases of whitespace in function declarations. | Martin Blais | 2006-06-06 | 1 | -1/+1 |
|
|
* | Convert CFieldObject tp_members to tp_getset, since there is no | Thomas Heller | 2006-06-06 | 1 | -4/+4 |
|
|
* | Conversion of exceptions over from faked-up classes to new-style C types. | Richard Jones | 2006-05-27 | 1 | -4/+4 |
|
|
* | add svn:eol-style native svn:keywords Id | Thomas Heller | 2006-05-12 | 1 | -104/+104 |
|
|