summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
...
* | more PY_LONG_LONG to long longBenjamin Peterson2016-09-084-46/+46
* | Issue #27570: Merge null pointer fixes from 3.5Martin Panter2016-09-072-5/+9
|\ \ | |/
| * Issue #27570: Avoid zero-length memcpy() calls with null source pointersMartin Panter2016-09-072-5/+9
* | more linux -> __linux__Benjamin Peterson2016-09-071-1/+1
* | require C99 boolBenjamin Peterson2016-09-071-11/+3
* | Fix some warnings from MSVCSteve Dower2016-09-071-1/+1
* | require a long long data type (closes #27961)Benjamin Peterson2016-09-064-24/+1
* | merge 3.5Benjamin Peterson2016-09-061-0/+2
|\ \ | |/
| * Backed out changeset 8b6be1341770Benjamin Peterson2016-09-061-0/+2
* | merge 3.5Benjamin Peterson2016-09-051-2/+0
|\ \ | |/
| * remove long double from ctypes value unionBenjamin Peterson2016-09-051-2/+0
* | Issue #27355: Removed support for Windows CE. It was never finished,Larry Hastings2016-09-059-1407/+0
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-301-1/+1
* | Closes #20160: Merged fix from 3.5.Vinay Sajip2016-08-052-2/+30
|\ \ | |/
| * Issue #20160: Merged fix from 3.4.Vinay Sajip2016-08-052-2/+30
| |\
| | * Issue #20160: Merged fix from 3.3.Vinay Sajip2016-08-052-2/+30
| | |\
| | | * Issue #20160: Handled passing of large structs to callbacks correctly.Vinay Sajip2016-08-052-2/+30
* | | | 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
* | | | Merge 3.5 (issue #11048)Victor Stinner2016-07-271-2/+4
|\ \ \ \ | |/ / /
| * | | ctypes: fix CThunkObject_new()Victor Stinner2016-07-271-2/+4
* | | | 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-163-22/+31
|\ \ \ \ | |/ / /
| * | | Issue #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-163-22/+31
* | | | Issue #27171: Fix typo in exception messageMartin Panter2016-06-021-1/+1
* | | | 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
* | | | Merge ctypes from 3.5Martin Panter2016-05-141-4/+0
|\ \ \ \ | |/ / /
| * | | Remove outdated PEP 291 compatibility requirement commentMartin Panter2016-05-141-4/+0
* | | | Issue #26932: Fixed support of RTLD_* constants defined as enum values,Serhiy Storchaka2016-05-042-3/+3
* | | | 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
|\ \ \ \ | |/ / /