summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes/callproc.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH-9258)Vladimir Matveev2018-09-161-2/+2
* Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka2017-11-111-1/+1
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-10/+0
* Fix compiler warnings on Windows introduced in bpo-13617. (#2464)Serhiy Storchaka2017-06-281-1/+1
* [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka2017-06-281-2/+3
* bpo-30353: Fix pass by value for structs on 64-bit Cygwin/MinGW (GH-1559)Erik Bray2017-06-071-2/+21
* Use NULL rather than 0. (#778)Serhiy Storchaka2017-03-231-1/+1
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-8/+4
* Use _PyObject_CallMethodIdObjArgs() in _ctypesVictor Stinner2016-12-091-13/+21
* Issue #28715: Added error checks for PyUnicode_AsUTF8().Serhiy Storchaka2016-11-201-1/+3
|\
| * Issue #28715: Added error checks for PyUnicode_AsUTF8().Serhiy Storchaka2016-11-201-1/+3
* | more PY_LONG_LONG to long longBenjamin Peterson2016-09-081-1/+1
* | require a long long data type (closes #27961)Benjamin Peterson2016-09-061-4/+0
* | Issue #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-161-1/+7
|\ \ | |/
| * Issue #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-161-1/+7
* | Issue #27171: Fix typo in exception messageMartin Panter2016-06-021-1/+1
* | Issue #26932: Fixed support of RTLD_* constants defined as enum values,Serhiy Storchaka2016-05-041-1/+1
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-1/+1
* | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-8/+8
|/
* Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (larg...Steve Dower2014-11-061-3/+0
|\
| * Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (larg...Steve Dower2014-11-051-3/+0
* | Merge: #13096: Fix segfault in CTypes POINTER handling of large values.R David Murray2014-10-121-2/+8
|\ \ | |/
| * #13096: Fix segfault in CTypes POINTER handling of large values.R David Murray2014-10-121-2/+8
* | Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex...Antoine Pitrou2014-10-081-1/+1
|\ \ | |/
| * Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex...Antoine Pitrou2014-10-081-1/+1
* | Issue #22156: Fix some "comparison between signed and unsigned integers"Victor Stinner2014-08-151-1/+1
|/
* 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