summaryrefslogtreecommitdiff
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
* bpo-10320: Use PY_FORMAT_LONG_LONG in ctypes' PyCArg_repr(). (GH-11230)Zackery Spytz2018-12-191-5/+1
* bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_re...Miss Islington (bot)2018-12-181-1/+1
* [2.7] bpo-16865: Support arrays >=2GB in ctypes. (GH-3006). (GH-7441)Serhiy Storchaka2018-12-041-6/+18
* [2.7] bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH...Vladimir Matveev2018-09-195-6/+221
* Fix compilation warnings on Windows (GH-8627)Victor Stinner2018-08-021-1/+1
* bpo-29565: Fix compilation for C89 (GH-8626)Victor Stinner2018-08-021-8/+12
* bpo-29565: Corrected ctypes passing of large structs by value on Windows AMD6...Victor Stinner2018-08-022-0/+23
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-312-10/+9
* [2.7] bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ at...Oren Milman2017-10-121-3/+3
* bpo-28129: fix ctypes crashes (#386) (#3800)Victor Stinner2017-09-282-9/+34
* [2.7] bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ at...Miss Islington (bot)2017-09-271-1/+9
* [2.7] bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(...Serhiy Storchaka2017-09-271-0/+10
* consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)Benjamin Peterson2017-09-131-1/+1
* [2.7] bpo-10746: Fix ctypes PEP 3118 type codes for c_long, c_bool, c_int (GH...Pauli Virtanen2017-09-021-2/+73
* bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)Serhiy Storchaka2017-04-151-4/+3
* bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046)Serhiy Storchaka2017-04-081-3/+2
* Issue #29082: Fixed loading libraries in ctypes by unicode names on Windows.Serhiy Storchaka2017-01-121-1/+1
* Issue #25659: Change assert to TypeError in from_buffer/_copy()Martin Panter2016-11-201-4/+10
* Issue #24381: Avoid unused function warning when building bundled macOS libffi.Ned Deily2016-10-201-2/+2
* Issue #27963: Fixed possible null pointer dereference in ctypes.set_conversio...Serhiy Storchaka2016-09-271-9/+28
* Issue #28139: Fix messed up indentationMartin Panter2016-09-171-20/+20
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
* Issue #27570: Avoid zero-length memcpy() calls with null source pointersMartin Panter2016-09-072-5/+9
* Backed out changeset 8b6be1341770Benjamin Peterson2016-09-051-0/+2
* remove long double from ctypes value unionBenjamin Peterson2016-09-051-2/+0
* Issue #20160: Handled passing of large structs to callbacks correctly.Vinay Sajip2016-08-052-2/+30
* Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-1/+1
* Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Martin Panter2016-07-283-3/+3
* ctypes: fix CThunkObject_new()Victor Stinner2016-07-271-2/+4
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-023-3/+3
* Issue #22463: Cure unused function warnings on AIXMartin Panter2016-06-222-2/+6
* Issue #22463: Backport compiler warning fixes and workaroundsMartin Panter2016-06-211-2/+1
* 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-11/+35
* Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-301-1/+1
* Remove PEP 291 compatibility requirements for ctypes and modulefinderMartin Panter2016-05-149-23/+12
* 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-5/+5
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-12/+12
* Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-102-2/+2
* 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-22/+11
* Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. PatchVictor Stinner2015-07-291-0/+1
* fix libffi compilation on FreeBSD (#23042)Benjamin Peterson2015-05-081-18/+30
* Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-041-2/+2
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-162-7/+14
* fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-1/+1
* 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-055-15/+83
* #13096: Fix segfault in CTypes POINTER handling of large values.R David Murray2014-10-121-2/+7