summaryrefslogtreecommitdiff
path: root/Modules/_ctypes/_ctypes.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-20/+10
* Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-1/+1
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-1/+1
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-4/+4
* Issue #25659: Merge ctypes fix from 3.6Martin Panter2016-11-201-3/+9
|\
| * Issue #25659: Merge ctypes fix from 3.5Martin Panter2016-11-201-3/+9
| |\
| | * Issue #25659: Change assert to TypeError in from_buffer/_copy()Martin Panter2016-11-201-3/+9
* | | Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-2/+2
|/ /
* | Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-6/+6
* | Issue #28715: Added error checks for PyUnicode_AsUTF8().Serhiy Storchaka2016-11-201-3/+2
|\ \ | |/
| * Issue #28715: Added error checks for PyUnicode_AsUTF8().Serhiy Storchaka2016-11-201-3/+2
| * Issue #28139: Fix messed up indentationMartin Panter2016-09-171-3/+3
* | Issue #27570: Merge null pointer fixes from 3.5Martin Panter2016-09-071-25/+17
|\ \ | |/ |/|
| * Fix some warnings from MSVCSteve Dower2016-09-061-1/+1
| * Issue #27355: Removed support for Windows CE. It was never finished,Larry Hastings2016-09-051-6/+0
| * Issue #27626: Merge spelling fixes from 3.5Martin Panter2016-07-281-1/+1
| |\
| * \ Issue #27343: Fixed error message for conflicting initializers of ctypes.Stru...Serhiy Storchaka2016-06-181-18/+16
| |\ \
| | * \ ctypes: the type of b_size is Py_ssize_t.Serhiy Storchaka2016-06-171-18/+16
| | |\ \
| | | * \ Issue #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-161-18/+16
| | | |\ \
| | | | * \ Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-301-18/+16
| | | | |\ \
| | | | | * | Issue #26932: Fixed support of RTLD_* constants defined as enum values,Serhiy Storchaka2016-05-041-2/+2
| | | | | * | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-171-16/+14
| | | | | |\ \
| | | | | | * \ Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-7/+7
| | | | | | |\ \
| | | | | | * \ \ Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-16/+14
| | | | | | |\ \ \
| | | | | | | * \ \ Issue #26304: Merge doc wording from 3.5Martin Panter2016-02-101-16/+14
| | | | | | | |\ \ \
| | | | | | | | * | | Issue #25972, #20440: Fix compilation on WindowsZachary Ware2015-12-281-1/+1
| | | | | | | | * | | Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR.Serhiy Storchaka2015-12-271-6/+4
| | | | | | | | * | | Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-2/+1
| | | | | | | | |\ \ \
| | | | | | | | * | | | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-2/+2
| | | | | | | | * | | | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-7/+7
| | | | | | | | * | | | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-1/+1
| | | | | | | | |\ \ \ \
| | | | | | | | | * \ \ \ Issue #25498: Merge ctypes crash fix from 3.5Martin Panter2015-11-131-1/+1
| | | | | | | | | |\ \ \ \
| | | | | | | | | | * | | | Issue #25558: Use compile-time asserts.Serhiy Storchaka2015-11-071-1/+1
* | | | | | | | | | | | | | Issue #27570: Avoid zero-length memcpy() calls with null source pointersMartin Panter2016-09-071-2/+4
| |_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | |
* | | | | | | | | | | | | Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-1/+1
|/ / / / / / / / / / / /
* | | | | | | | | | | | Issue #27343: Fixed error message for conflicting initializers of ctypes.Stru...Serhiy Storchaka2016-06-181-7/+2
|/ / / / / / / / / / /
* | | | | | | | | | | ctypes: the type of b_size is Py_ssize_t.Serhiy Storchaka2016-06-171-4/+4
|/ / / / / / / / / /
* | | | | | | | | | Issue #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-161-6/+19
|/ / / / / / / / /
* | | | | | | | | Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-301-1/+1
|/ / / / / / / /
* | | | | | | | Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-7/+7
|/ / / / / /
* | | | | | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-14/+14
|/ / / / /
* | | | | Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-101-1/+1
| |_|_|/ |/| | |
* | | | Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-2/+1
|/ / /
* | | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-27/+14
|/ /
* | Issue #25498: Merge ctypes crash fix from 3.4 into 3.5Martin Panter2015-11-131-18/+38
|\ \ | |/ |/|
| * Issue #25498: Fix GC crash due to ctypes objects wrapping a memoryviewMartin Panter2015-11-131-18/+38
* | Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-141-3/+4
|\ \ | |/ |/|
| * Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-041-2/+2
| |\
| * | Silenced minor GCC warnings.Serhiy Storchaka2015-02-261-2/+3