summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes
Commit message (Expand)AuthorAgeFilesLines
* Issue 1872: Changed the struct module typecode from 't' to '?', forThomas Heller2008-03-051-1/+1
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-236-6/+4
* Replace 'has_key()' with 'in'.Thomas Heller2008-02-215-13/+11
* Make the test somewhat clearer (I hope).Thomas Heller2008-02-131-4/+4
* Add pickle support to ctypes types.Thomas Heller2008-02-131-0/+78
* Revert rev. 59925, it breaks comtypes (I need to further examine this).Thomas Heller2008-01-281-6/+0
* Invert the checks in get_[u]long and get_[u]longlong. The intent wasThomas Heller2008-01-241-1/+17
* Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, forThomas Heller2008-01-161-1/+1
* Raise a TypeError instead of a ValueError when too many initializersThomas Heller2008-01-161-4/+4
* Raise a TypeError if conflicting positional and named arguments areThomas Heller2008-01-161-0/+9
* Convert the internal ctypes array type cache to a WeakValueDict soThomas Heller2008-01-161-0/+14
* Raise an error instead of crashing with a segfault when a NULLThomas Heller2008-01-111-0/+6
* Issue #1642: Fix segfault in ctypes when trying to delete attributes.Thomas Heller2007-12-181-0/+21
* Enable the full ctypes c_longdouble tests again.Thomas Heller2007-11-022-22/+22
* Added unittest for calling a function with paramflags (backport from py3k bra...Thomas Heller2007-10-241-0/+18
* On OS X, use os.uname() instead of gestalt.sysv(...) to get theThomas Heller2007-10-111-10/+3
* ctypes.util.find_library uses dump(1) instead of objdump(1) on Solaris.Thomas Heller2007-09-141-9/+21
* Disable some tests that fail on the 'ppc Debian unstable' buildbot toThomas Heller2007-09-112-22/+22
* Backport from py3k branch:Thomas Heller2007-09-071-0/+6
* Add a 'c_longdouble' type to the ctypes module.Thomas Heller2007-09-076-2/+35
* Somewhat-preliminary slice-object and extended slicing support for ctypes.Thomas Wouters2007-08-308-3/+128
* Fix typo in docstring (missing c in reacquire)Neal Norwitz2007-08-261-1/+1
* Fix for SF# 1701409: segfault in c_char_p of ctypes. The repr outputThomas Heller2007-07-131-0/+8
* Do not try to load the GLUT library in the ctypes tests. This testThomas Heller2007-07-131-24/+2
* Add tests for _ctypes.COMError.Thomas Heller2007-07-131-0/+9
* Make this test work with older Python releases where struct has no 't' format...Thomas Heller2007-06-081-1/+4
* Correct the name of a field in the WIN32_FIND_DATAA and WIN32_FIND_DATAW stru...Thomas Heller2007-05-301-2/+2
* Oops, these tests do not run on Windows CE.Thomas Heller2007-05-041-15/+16
* Do not truncate 64-bit pointers to 32-bit integers.Thomas Heller2007-05-041-0/+27
* Fix some ctypes test crashes, when running with a debug PythonThomas Heller2007-05-043-4/+11
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-252-3/+3
* Patch #1649190: Adding support for _Bool to ctypes as c_bool, by David Remahl.Thomas Heller2007-03-133-3/+33
* Bug #1651235: When a tuple was passed to a ctypes function call,Thomas Heller2007-03-091-1/+13
* Fix bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0)Thomas Heller2007-03-092-2/+4
* patch #1610795: BSD version of ctypes.util.find_library, by MartinThomas Heller2007-01-121-28/+50
* Avoid warnings in the test suite because ctypes.wintypes cannot beThomas Heller2007-01-121-1/+2
* Correct the comments: the code is right.Thomas Heller2007-01-111-2/+2
* Fixes for 64-bit Windows: In ctypes.wintypes, correct the definitionsThomas Heller2007-01-112-5/+30
* Change the ctypes version number to "1.1.0".Thomas Heller2007-01-101-1/+1
* Verify the sizes of the basic ctypes data types against the structThomas Heller2007-01-091-0/+28
* Fix a bad assumption that all objects assigned to '__loader__' on a moduleBrett Cannon2006-12-061-1/+2
* Fix bug #1598620: A ctypes structure cannot contain itself.Thomas Heller2006-11-241-0/+30
* ctypes callback functions only support 'fundamental' result types.Thomas Heller2006-10-171-0/+13
* The cast function did not accept c_char_p or c_wchar_p instancesThomas Heller2006-09-071-0/+16
* Anonymous structure fields that have a bit-width specified did not work,Thomas Heller2006-09-071-0/+9
* Port _ctypes.pyd to win64 on AMD64.Thomas Heller2006-08-252-1/+4
* Remove the special casing of Py_None when converting the return valueThomas Heller2006-08-162-0/+2
* The __repr__ method of a NULL py_object does no longer raise anThomas Heller2006-08-162-0/+10
* Apply the patch #1532975 plus ideas from the patch #1533481.Thomas Heller2006-08-144-20/+226
* Remove code that is no longer used (ctypes.com).Thomas Heller2006-07-271-38/+7