summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes/callproc.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
|\
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
* | Issue #18408: Fix ConvParam() of the ctypes module to handle paramfunc failureVictor Stinner2013-07-081-0/+2
* | Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if i...Christian Heimes2013-06-181-0/+3
|\ \ | |/
| * Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if i...Christian Heimes2013-06-181-0/+3
* | (Merge 3.3) ctypes: AIX needs an explicit #include <alloca.h> to get alloca()Victor Stinner2013-06-171-0/+1
|\ \ | |/
| * ctypes: AIX needs an explicit #include <alloca.h> to get alloca()Victor Stinner2013-06-171-0/+1
* | Issue #10296: Merge to defaultKristján Valur Jónsson2013-03-191-0/+5
|\ \ | |/
| * #10296: Merge to 3.3Kristján Valur Jónsson2013-03-191-0/+5
| |\
| | * Issue #10296 : Don't handle BreakPoint exceptions usingKristján Valur Jónsson2013-03-191-0/+5
* | | Merge 3.3, issue #17047: remove doubled words found in 2.7 to 3.4Terry Jan Reedy2013-03-111-2/+2
|\ \ \ | |/ /
| * | Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4Terry Jan Reedy2013-03-111-2/+2
| |\ \ | | |/
| | * Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,Terry Jan Reedy2013-03-111-2/+2
* | | Fix formatting changes that led to compilation errorsEli Bendersky2013-03-061-4/+2
* | | call_commethod was only used in samples/Windows, which no longer exists.Eli Bendersky2013-03-061-57/+0
* | | Fix some formattingEli Bendersky2013-03-061-11/+11
* | | Merge with 3.3 : Don't DECREF the ctypes error_object without the GIL held.Kristjan Valur Jonsson2012-12-211-1/+1
|\ \ \ | |/ /
| * | Merge with 3.2 : Don't DECREF the ctypes error_object without the GIL held.Kristjan Valur Jonsson2012-12-211-1/+1
| |\ \ | | |/
| | * Merge with 3.1 : Don't DECREF the ctypes error_object without the GIL held.Kristjan Valur Jonsson2012-12-211-1/+1
| | |\
| | | * Don't DECREF the ctypes error_object without the GIL held.Kristjan Valur Jonsson2012-12-211-1/+1
* | | | Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-191-18/+18
|/ / /
* | | Issue #16628: Fix a memory leak in ctypes.resize().Antoine Pitrou2012-12-081-1/+1
|\ \ \ | |/ /
| * | Issue #16628: Fix a memory leak in ctypes.resize().Antoine Pitrou2012-12-081-1/+1
* | | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-2/+2
* | | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-2/+4
* | | Check error when calling PyUnicode_AppendAndDel()Victor Stinner2011-10-021-2/+2
* | | Implement PEP 393.Martin v. Löwis2011-09-281-8/+0
|/ /
* | #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\ \ | |/
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* | #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
|\ \ | |/
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
| * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-1289/+1289
| * Merged revisions 80159 via svnmerge fromVictor Stinner2010-04-181-3/+16
| * Merged revisions 78435 via svnmerge fromLarry Hastings2010-02-241-1/+7
| * Merged revisions 74922 via svnmerge fromThomas Heller2009-09-181-0/+1
* | PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-1/+1
* | Issue #9979: Use PyUnicode_AsWideCharString() in _ctypes moduleVictor Stinner2010-09-291-12/+3
* | Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use m...Daniel Stutzbach2010-08-241-1/+1
* | Issue #8966: ctypes: Remove implicit bytes-unicode conversionVictor Stinner2010-07-281-34/+0
* | Merged revisions 82126-82127 via svnmerge fromThomas Heller2010-06-211-2/+37
* | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1259/+1259
* | Merged revisions 80761,80766 via svnmerge fromThomas Heller2010-05-041-37/+2
* | Issue #8394: _ctypes.dlopen() accepts bytes, bytearray and str withVictor Stinner2010-04-181-3/+16
* | Issue #5939: Add additional runtime checking to ensure a valid capsuleLarry Hastings2010-02-241-1/+7
* | Merged revisions 74921 via svnmerge fromThomas Heller2009-09-181-0/+1
|/
* add a replacement API for PyCObject, PyCapsule #5630Benjamin Peterson2009-05-051-3/+13
* Merged revisions 71906 via svnmerge fromThomas Heller2009-04-251-146/+142
* Merged revisions 71853 via svnmerge fromThomas Heller2009-04-241-41/+41
* (The fix has been slightly adjusted.)Thomas Heller2009-02-101-1/+2
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1