summaryrefslogtreecommitdiff
path: root/Modules/_ctypes/callproc.c
Commit message (Expand)AuthorAgeFilesLines
* gh-103092: Port _ctypes.COMError to heap type (#104020)Erlend E. Aasland2023-05-041-1/+2
* Fix typo in "expected" word in few source files (#104034)chgnrdv2023-05-011-1/+1
* gh-103092: Isolate _ctypes, part 1 (#103893)Erlend E. Aasland2023-04-271-34/+40
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives in ...Irit Katriel2023-03-101-17/+19
* Fix `ctypes` typo in `set_exception` (#101040)Cristián Maureira-Fredes2023-01-151-1/+1
* gh-100540: Remove obsolete Modules/_ctypes/darwin/ dlfcn shim (GH-100541)Zachary Ware2022-12-291-6/+6
* gh-99337: Fix compile errors with gcc 12 on macOS (#99470)Ronald Oussoren2022-11-211-2/+12
* gh-99426: Use PyUnicode_FromFormat() and PyErr_Format() instead of sprintf (G...Serhiy Storchaka2022-11-141-18/+6
* gh-99300: Use Py_NewRef() in Modules/_ctypes/ (#99436)Victor Stinner2022-11-131-12/+6
* gh-90868: Adjust the Generated Objects (gh-99223)Eric Snow2022-11-081-1/+2
* gh-92119: ctypes: Print exception class name instead of its representation (#...Kamil Turek2022-11-071-1/+4
* GH-90699: Remove `_Py_IDENTIFIER` usage from `_ctypes` (GH-99054)Kumar Aditya2022-11-031-7/+5
* gh-90005: Port _ctypes to PY_STDLIB_MOD (GH-32229)Christian Heimes2022-06-261-0/+3
* gh-91118: Fix docstrings that do not honor --without-doc-strings (#31769)Oleg Iarygin2022-04-171-16/+16
* gh-91353: Fix void return type handling in ctypes (GH-32246)Hood Chatham2022-04-141-1/+6
* bpo-46323: Reduce stack usage of ctypes python callback function. (GH-31224)Dong-hee Na2022-02-101-5/+1
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-0/+2
* bpo-46323: _ctypes.CFuncPtr fails if _argtypes_ is too long (GH-31188)Victor Stinner2022-02-071-8/+0
* bpo-46670: Test if a macro is defined, not its value (GH-31178)Victor Stinner2022-02-071-1/+1
* Fix typos in the Modules directory (GH-28761)Christian Clauss2021-10-071-1/+1
* bpo-45082: Cleanup ctypes.c_buffer alias (GH-28129)Victor Stinner2021-09-021-2/+2
* bpo-44689: ctypes.util.find_library() now finds macOS 11+ system libraries wh...Tobias Bergkvist2021-08-301-3/+26
* closes bpo-42938: Replace snprintf with Python unicode formatting in ctypes p...Benjamin Peterson2021-01-181-32/+19
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-1/+1
* bpo-38823: Always build _ctypes with wchar_t (GH-23248)Victor Stinner2020-11-121-2/+0
* bpo-38823: Fix refleaks in _ctypes extension init (GH-23247)Victor Stinner2020-11-121-5/+3
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-081-12/+115
* bpo-36346: Do not use legacy Unicode C API in ctypes. (#21429)Serhiy Storchaka2020-07-101-5/+5
* bpo-41094: Fix decoding errors with audit when open files. (GH-21095)Serhiy Storchaka2020-06-241-5/+2
* bpo-40795: ctypes calls unraisablehook with an exception (GH-20452)Victor Stinner2020-05-281-0/+2
* bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914)Sean Gillespie2020-05-271-0/+15
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-2/+2
* bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...Serhiy Storchaka2020-04-121-1/+1
* Use calloc-based functions, not malloc. (GH-19152)Andy Lester2020-03-241-4/+2
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-111-4/+4
* bpo-39393: Misleading error message on dependent DLL resolution failure (GH-1...Zackery Spytz2020-01-281-2/+3
* bpo-38622: Ensure ctypes.PyObj_FromPtr audit event passes tuples as a single ...Steve Dower2019-11-181-2/+2
* bpo-38622: Add missing audit events for ctypes module (GH-17158)Steve Dower2019-11-181-7/+44
* bpo-37445: Include FORMAT_MESSAGE_IGNORE_INSERTS in FormatMessageW() calls (G...Zackery Spytz2019-09-091-1/+3
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-301-1/+1
* bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)Jeroen Demeyer2019-07-111-1/+1
* bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer2019-07-041-4/+4
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-301-2/+2
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+7
* bpo-36594: Fix incorrect use of %p in format strings (GH-12769)Zackery Spytz2019-05-061-2/+2
* bpo-36071 Add support for Windows ARM32 in ctypes/libffi (GH-12059)Paul Monson2019-04-171-3/+8
* bpo-36085: Enable better DLL resolution on Windows (GH-12302)Steve Dower2019-03-291-9/+25
* bpo-35947: Update Windows to the current version of libffi (GH-11797)Paul Monson2019-03-291-34/+18
* bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)Serhiy Storchaka2019-03-131-3/+3
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-021-1/+10