summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
...
* | | | 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-102-2/+2
|\ \ \ \ | |/ / /
| * | | Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-102-2/+2
* | | | 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-254-5/+5
* | | | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-252-15/+15
* | | | 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 #25845: Merge PyLong_Check() cleanup from 3.5Martin Panter2015-12-121-2/+2
|\ \ \ \ | |/ / /
| * | | Issue #25845: Drop redundant checks leftover from int to long conversionMartin Panter2015-12-121-2/+2
* | | | 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 #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-023-3/+3
|\ \ \ | |/ /
| * | Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-023-3/+3
* | | Merge 3.4 (ctypes)Victor Stinner2015-07-291-0/+1
|\ \ \ | |/ /
| * | Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. PatchVictor Stinner2015-07-291-0/+1
* | | merge 3.4 (#23042)Benjamin Peterson2015-05-091-18/+30
|\ \ \ | |/ /
| * | fix libffi compilation on FreeBSD (#23042)Benjamin Peterson2015-05-091-18/+30
* | | Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-143-3/+3
|\ \ \ | |/ /
| * | Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-143-3/+3
* | | 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
* | | Issue #23765: Remove IsBadStringPtr calls in ctypesSteve Dower2015-03-251-20/+4
* | | 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-162-7/+14
|\ \ \ | |/ /
| * | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-162-7/+14
* | | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-26/+31
|\ \ \ | |/ /
| * | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-26/+31
* | | merge 3.4 (#23221)Benjamin Peterson2015-01-131-1/+1
|\ \ \ | |/ /
| * | fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-1/+1
* | | Issue #22733: MSVC ffi_prep_args doesn't handle 64-bit arguments properlySteve Dower2014-12-171-9/+28
* | | merge 3.4Benjamin Peterson2014-11-061-4/+4
|\ \ \ | |/ /
| * | fix test where sizeof(long) != sizeof(int)Benjamin Peterson2014-11-061-4/+4
* | | Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (larg...Steve Dower2014-11-065-12/+81
|\ \ \ | |/ /
| * | Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (larg...Steve Dower2014-11-055-12/+81
* | | 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-083-47/+2
|\ \ \ | |/ /
| * | Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex...Antoine Pitrou2014-10-083-47/+2