summaryrefslogtreecommitdiff
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-092-2/+41
* Merged revisions 60383-60407 via svnmerge fromChristian Heimes2008-01-291-5/+0
* Merged revisions 60379-60382 via svnmerge fromChristian Heimes2008-01-282-5/+5
* Merged revisions 60350-60363 via svnmerge fromChristian Heimes2008-01-272-16/+48
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-252-38/+164
* Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge fromChristian Heimes2008-01-181-1/+1
* Merged revisions 60001,60003-60004,60008 via svnmerge fromThomas Heller2008-01-172-15/+40
* Merged revisions 59952-59984 via svnmerge fromGuido van Rossum2008-01-152-104/+57
* Merged revisions 59933-59951 via svnmerge fromChristian Heimes2008-01-142-2/+2
* Merged revisions 59921-59932 via svnmerge fromChristian Heimes2008-01-121-1/+6
* Merged revisions 59843-59863 via svnmerge fromChristian Heimes2008-01-092-2/+2
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-2/+2
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-194-31/+31
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-192-0/+21
* Merged revisions 59488-59511 via svnmerge fromChristian Heimes2007-12-151-1/+1
* Fixed problem with missing PyInt_CheckExact() macro in _ctypes.cChristian Heimes2007-12-051-4/+9
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-025-64/+64
* Fixed bug #1505 Changes to PyMethod_New breaks ctypes on WindowsChristian Heimes2007-11-281-50/+63
* Merged revisions 59187-59192 via svnmerge fromChristian Heimes2007-11-271-15/+0
* The changes to PyMethod_New and the removal of unbound methods breaks ctypes'...Christian Heimes2007-11-271-4/+5
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-1/+1
* Fix two compiler warnings on Win64.Thomas Heller2007-11-152-2/+2
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-151-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-063-37/+40
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-018-26/+32
* A 'PyObject *' parameter in PyErr_Format must use %S parameter, not %s.Thomas Heller2007-10-241-1/+1
* Patch #1318 by Amaury Forgeot d'Arc.Guido van Rossum2007-10-244-52/+48
* #1316: remove redundant PyLong_Check calls when PyInt_Check was already called.Georg Brandl2007-10-232-12/+11
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-2/+2
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-13/+5
* Delete now-unused static function Array_ass_slice().Guido van Rossum2007-09-251-42/+0
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-2/+2
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-087-3/+70
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-91/+3
* Merged revisions 57620-57771 via svnmerge fromThomas Wouters2007-08-301-2/+305
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-21/+18
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-121-2/+3
* Fix the ctypes tests. Patch from Victor Stinner. He writes:Thomas Heller2007-08-081-1/+1
* Fix merge breakage.Martin v. Löwis2007-07-211-1/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-214-61/+45
* Merged revisions 56301-56442 via svnmerge fromGuido van Rossum2007-07-184-11/+15
* For easier merging, revert ths change; it will be brought back in whenThomas Heller2007-07-131-0/+2
* c_char, c_char_p objects and c_char array structure fields returnThomas Heller2007-07-131-31/+16
* Do not accept str8 type in function calls any longer.Thomas Heller2007-07-132-10/+1
* Remove all the Python 2.3 compatibility markers (the Python 3 ctypesThomas Heller2007-07-131-46/+0
* Remove all the Python 2.3 compatibility markers (the Python 3 ctypesThomas Heller2007-07-137-152/+0
* Structure fields of type c_char array or c_wchar array accept bytes orThomas Heller2007-07-131-2/+21
* c_void_p.from_param accepts bytes. Fix test_prototypes.Thomas Heller2007-07-121-0/+18
* c_char_p.from_param accepts bytes. Fix test_parameters.Thomas Heller2007-07-121-1/+1
* Accept bytes as parameter to foreign functions without prototype.Thomas Heller2007-07-121-0/+9