summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes/_ctypes.c
Commit message (Expand)AuthorAgeFilesLines
* 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 #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
|\ \ | |/
| * 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
|\ \ | |/
| * 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 #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-161-6/+19
* | Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-301-1/+1
|\ \ | |/
| * Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-301-1/+1
* | 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-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 #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 #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-14/+14
* | Issue #26304: Merge doc wording from 3.5Martin Panter2016-02-101-1/+1
|\ \ | |/
| * Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-101-1/+1
* | Issue #25972, #20440: Fix compilation on WindowsZachary Ware2015-12-291-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 #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-27/+14
|\ \ | |/
| * Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-27/+14
* | Issue #25498: Merge ctypes crash fix from 3.5Martin Panter2015-11-131-18/+38
|\ \ | |/
| * 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 #25558: Use compile-time asserts.Serhiy Storchaka2015-11-071-1/+1
|/ /
* | Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-141-1/+1
|\ \ | |/
| * Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-141-1/+1
* | Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-041-2/+2
|\ \ | |/
| * 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
* | Issue #23450: Fixed possible integer overflows.Serhiy Storchaka2015-02-161-1/+1
|/
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-3/+6
* Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-26/+31
* fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-1/+1
* Issue #22161: Conformed arguments type checks in ctype to actually supportedSerhiy Storchaka2014-08-091-22/+5
* support pep 3118 format strings for ctypes objects with nontrivial shapes (cl...Benjamin Peterson2014-05-171-10/+52
* Issue #20437: Fixed 22 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-12/+6
|\
| * Issue #20437: Fixed 21 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-12/+6
* | Issue #19437: Fix error handling of PyCArrayType_new(), don't decreases theVictor Stinner2013-11-181-1/+2
* | Issue #19437: Fix error handling of CDataType_from_buffer()Victor Stinner2013-11-181-1/+0
* | Fix compiler warning on Windows 64 bit: _init_pos_args() result type isVictor Stinner2013-11-151-2/+2
* | Issue #19437: Fix ctypes, handle PyCData_GetContainer() and GetKeepedObjects()Victor Stinner2013-11-131-1/+19
* | Issue #19437: Fix GetKeepedObjects() of ctypes, handle PyCData_GetContainer()Victor Stinner2013-11-131-1/+5