| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-29753: revert 0d7ad9f (GH-19850) (GH-27085) | Miss Islington (bot) | 2021-07-11 | 1 | -27/+8 |
|
|
* | bpo-32745: Fix a regression in the handling of ctypes' c_wchar_p type (#8721) | Zackery Spytz | 2021-05-02 | 1 | -1/+2 |
|
|
* | bpo-29753: fix merging packed bitfields in ctypes struct/union (GH-19850) | Filipe Laíns | 2021-02-28 | 1 | -8/+27 |
|
|
* | bpo-43335: Update macro to check gcc version (GH-24662) | Dong-hee Na | 2021-02-28 | 1 | -2/+2 |
|
|
* | closes bpo-42938: Replace snprintf with Python unicode formatting in ctypes p... | Benjamin Peterson | 2021-01-18 | 1 | -32/+19 |
|
|
* | bpo-42688: Fix ffi alloc/free when using external libffi on macos (GH-23868) | erykoff | 2020-12-22 | 1 | -2/+10 |
|
|
* | bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587) | Victor Stinner | 2020-12-01 | 1 | -1/+1 |
|
|
* | Add GCC pragmas to silence compiler warning about ffi_prep_closure (GH-23327) | Pablo Galindo | 2020-11-16 | 1 | -2/+9 |
|
|
* | bpo-38823: Fix compiler warning in _ctypes on Windows (GH-23258) | Victor Stinner | 2020-11-13 | 1 | -1/+1 |
|
|
* | bpo-38823: Always build _ctypes with wchar_t (GH-23248) | Victor Stinner | 2020-11-12 | 5 | -31/+4 |
|
|
* | bpo-38823: Fix refleaks in _ctypes extension init (GH-23247) | Victor Stinner | 2020-11-12 | 2 | -162/+156 |
|
|
* | bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) | Ronald Oussoren | 2020-11-08 | 4 | -22/+167 |
|
|
* | bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998) | Victor Stinner | 2020-10-27 | 1 | -2/+5 |
|
|
* | bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986) | Serhiy Storchaka | 2020-10-26 | 2 | -13/+13 |
|
|
* | bpo-16396: Allow wintypes to be imported on non-Windows systems. (GH-21394) | Jason R. Coombs | 2020-10-19 | 1 | -3/+6 |
|
|
* | bpo-36346: Do not use legacy Unicode C API in ctypes. (#21429) | Serhiy Storchaka | 2020-07-10 | 3 | -29/+21 |
|
|
* | bpo-41094: Fix decoding errors with audit when open files. (GH-21095) | Serhiy Storchaka | 2020-06-24 | 1 | -5/+2 |
|
|
* | bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889) | Victor Stinner | 2020-06-15 | 1 | -1/+1 |
|
|
* | bpo-29882: Add _Py_popcount32() function (GH-20518) | Victor Stinner | 2020-06-08 | 1 | -1/+1 |
|
|
* | bpo-39593: Add test on ctypes cfield.c s_set() (GH-18424) | Hai Shi | 2020-06-01 | 1 | -1/+3 |
|
|
* | bpo-40795: ctypes calls unraisablehook with an exception (GH-20452) | Victor Stinner | 2020-05-27 | 2 | -14/+31 |
|
|
* | bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914) | Sean Gillespie | 2020-05-27 | 1 | -0/+15 |
|
|
* | bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636) | Serhiy Storchaka | 2020-05-26 | 1 | -30/+4 |
|
|
* | bpo-40302: Add pycore_byteswap.h header file (GH-19552) | Victor Stinner | 2020-04-17 | 1 | -53/+48 |
|
|
* | bpo-40268: Remove unused structmember.h includes (GH-19530) | Victor Stinner | 2020-04-15 | 2 | -3/+3 |
|
|
* | bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (... | Serhiy Storchaka | 2020-04-12 | 3 | -4/+4 |
|
|
* | bpo-39481: PEP 585 for a variety of modules (GH-19423) | Batuhan Taşkaya | 2020-04-10 | 1 | -1/+7 |
|
|
* | Use calloc-based functions, not malloc. (GH-19152) | Andy Lester | 2020-03-25 | 1 | -4/+2 |
|
|
* | bpo-1635741: Port _ctypes_test extension to multiphase initialization (PEP 4... | Hai Shi | 2020-03-17 | 1 | -3/+6 |
|
|
* | bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883) | Victor Stinner | 2020-03-09 | 2 | -2/+0 |
|
|
* | bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) | Dong-hee Na | 2020-02-17 | 2 | -8/+8 |
|
|
* | bpo-39245: Switch to public API for Vectorcall (GH-18460) | Petr Viktorin | 2020-02-11 | 1 | -4/+4 |
|
|
* | bpo-39573: Use Py_TYPE() macro in ctypes.h (GH-18411) | Dong-hee Na | 2020-02-08 | 1 | -2/+2 |
|
|
* | bpo-39573: Add Py_SET_TYPE() function (GH-18394) | Victor Stinner | 2020-02-07 | 2 | -7/+7 |
|
|
* | bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393) | Victor Stinner | 2020-02-07 | 3 | -10/+10 |
|
|
* | bpo-39393: Misleading error message on dependent DLL resolution failure (GH-1... | Zackery Spytz | 2020-01-28 | 1 | -2/+3 |
|
|
* | bpo-16575: Disabled checks for union types being passed by value. (GH-17960) | Vinay Sajip | 2020-01-12 | 1 | -0/+18 |
|
|
* | bpo-38532: Add missing decrefs in PyCFuncPtr_FromDll() (GH-16857) | Zackery Spytz | 2020-01-03 | 1 | -0/+2 |
|
|
* | bpo-38622: Ensure ctypes.PyObj_FromPtr audit event passes tuples as a single ... | Steve Dower | 2019-11-18 | 1 | -2/+2 |
|
|
* | bpo-38622: Add missing audit events for ctypes module (GH-17158) | Steve Dower | 2019-11-18 | 2 | -7/+65 |
|
|
* | bpo-16576: Add checks for bitfields passed by value to functions. (GH-17097) | Vinay Sajip | 2019-11-12 | 2 | -3/+60 |
|
|
* | bpo-16575: Add checks for unions passed by value to functions. (GH-16799) | Vinay Sajip | 2019-10-31 | 4 | -0/+98 |
|
|
* | bpo-11410: Standardize and use symbol visibility attributes across POSIX and ... | Vinay Sajip | 2019-10-15 | 1 | -5/+1 |
|
|
* | bpo-38368: Added fix for ctypes crash when handling arrays in structs… (GH-... | Vinay Sajip | 2019-10-08 | 2 | -25/+179 |
|
|
* | bpo-38321: Fix PyCStructUnionType_update_stgdict() warning (GH-16492) | Victor Stinner | 2019-09-30 | 1 | -1/+1 |
|
|
* | Changed conditions for ctypes array-in-struct handling. (GH-16381) | Vinay Sajip | 2019-09-25 | 1 | -7/+4 |
|
|
* | bpo-22273: Disabled tests while investigating buildbot failures on ARM7L/PPC6... | Vinay Sajip | 2019-09-25 | 1 | -1/+1 |
|
|
* | bpo-22273: Update ctypes to correctly handle arrays in small structur… (GH-... | Vinay Sajip | 2019-09-25 | 2 | -0/+146 |
|
|
* | closes bpo-38127: _ctypes: PyObject_IsSubclass() should be checked for failur... | Zackery Spytz | 2019-09-12 | 1 | -1/+5 |
|
|
* | Fix calling order of PyEval_InitThreads. (GH-4602) | Kenta Murata | 2019-09-10 | 1 | -1/+1 |
|
|