summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes
Commit message (Expand)AuthorAgeFilesLines
* gh-112015: Implement `ctypes.memoryview_at()` (GH-112018)Rian Hunter2025-01-031-0/+9
* gh-127255: Make `CopyComPointer` public and add to `ctypes` doc. (GH-127275)Jun Komoda2024-12-031-1/+1
* gh-126615: `ctypes`: Make `COMError` public (GH-126686)Jun Komoda2024-11-201-1/+1
* gh-123610: Added additional types to ctypes/wintypes.py (GH-124086)RUANG (Roy James)2024-10-181-0/+8
* gh-121249: Support _Complex types in the struct module (#121613)Sergey B Kirpichev2024-10-071-0/+2
* gh-97588: Move ctypes struct/union layout logic to Python (GH-123352)Petr Viktorin2024-09-051-0/+337
* gh-105733: Soft-deprecate ctypes.ARRAY, rather than hard-deprecating it. (GH-...Petr Viktorin2024-07-301-2/+0
* gh-61103: Support float and long double complex types in ctypes module (#121248)Sergey B Kirpichev2024-07-031-0/+4
* gh-61103: Support double complex (_Complex) type in ctypes (#120894)Sergey B Kirpichev2024-07-011-0/+6
* gh-87969: Align docs and docstrings with implementation for ctypes' [w]string...Shreyan Avigyan2024-04-181-4/+4
* gh-71052: Implement `ctypes.util.find_library` on Android (GH-116379)Malcolm Smith2024-03-211-0/+9
* gh-114099 - Add iOS framework loading machinery. (GH-116454)Russell Keith-Magee2024-03-192-1/+12
* gh-71052: Change Android's `sys.platform` from "linux" to "android"Malcolm Smith2024-03-111-1/+1
* gh-71052: Fix several Android build issues (#115955)Malcolm Smith2024-02-291-0/+2
* gh-114257: Ignore the FileNotFound error in ctypes.util._is_elf() (GH-114394)AN Long2024-01-221-2/+5
* gh-105102: Fix nested unions in structures when the system byteorder is the o...Sheidan2024-01-171-2/+2
* gh-105751: test_ctypes avoids "from ctypes import *" (#105768)Victor Stinner2023-06-141-1/+1
* gh-105733: Deprecate ctypes SetPointerType() and ARRAY() (#105734)Victor Stinner2023-06-131-2/+4
* Fix typo in _swappedbytes_ in ctypes comment (#102773)Matthias Görgens2023-03-251-1/+1
* bpo-33591: Add support for path like objects to `ctypes.CDLL` (#7032)mrh19972023-02-051-0/+2
* gh-60580: Fix a wrong type of `ctypes.wintypes.BYTE` (#97579)Oleg Iarygin2023-01-261-1/+1
* gh-78997: fix bad rebase of moved test file (#100424)Eli Schwartz2022-12-221-188/+0
* gh-78997: AttributeError if loading fails in LibraryLoader.__getattr__Ateeq Sharfuddin2022-12-152-1/+192
* bpo-45975: Simplify some while-loops with walrus operator (GH-29347)Nick Drozd2022-11-261-6/+2
* gh-92869: ctypes: Add c_time_t (#92870)Thomas Perl2022-07-031-0/+8
* gh-93839: Move Lib/ctypes/test/ to Lib/test/test_ctypes/ (#94041)Victor Stinner2022-06-2153-7260/+0
* gh-91265: Make old ctypes.macholib tests runned by `python -m test` (gh-32094)Oleg Iarygin2022-04-184-52/+44
* bpo-47208: Allow vendors to override CTYPES_MAX_ARGCOUNT (GH-32297)Christian Heimes2022-04-041-2/+1
* bpo-33178: Add BigEndianUnion, LittleEndianUnion classes to ctypes (GH-25480)Dave Goncalves2022-03-293-36/+103
* bpo-46913: Skip test_ctypes.test_shorts() on UBSan (GH-31674)Victor Stinner2022-03-031-0/+3
* bpo-46748: Fix ctypes test_frozentable() (GH-31600)Kumar Aditya2022-02-261-1/+1
* bpo-46323: _ctypes.CFuncPtr fails if _argtypes_ is too long (GH-31188)Victor Stinner2022-02-072-12/+25
* bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa...Kumar Aditya2022-02-041-4/+6
* bpo-46584: remove check for `py2.3` from `ctypes/test_python_api` (GH-31024)Nikita Sobolev2022-02-011-6/+2
* bpo-45878: convert `try/except` to `self.assertRaises` in `Lib/ctypes/test/te...Nikita Sobolev2021-11-231-14/+4
* bpo-45696: Deep-freeze selected modules (GH-29118)Guido van Rossum2021-11-111-1/+3
* bpo-45395: Make custom frozen modules additions instead of replacements. (gh-...Eric Snow2021-10-281-24/+26
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-062-3/+3
* bpo-45019: Clean up the frozen __hello__ module. (gh-28374)Eric Snow2021-09-151-1/+1
* bpo-45019: Silence a warning in test_ctypes. (gh-28362)Eric Snow2021-09-151-2/+2
* bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...Eric Snow2021-09-141-2/+4
* bpo-45019: Do some cleanup related to frozen modules. (gh-28319)Eric Snow2021-09-131-27/+21
* bpo-19113: Remove unused test_errors from ctypes tests (GH-28008)andrei kulakov2021-09-081-9/+0
* bpo-45082: Cleanup ctypes.c_buffer alias (GH-28129)Victor Stinner2021-09-022-93/+2
* bpo-45060: Get rid of few uses of the equality operators with None (GH-28087)Serhiy Storchaka2021-08-311-2/+2
* Update URLs in comments and metadata to use HTTPS (GH-27458)Noah Kantrowitz2021-07-302-2/+2
* bpo-29753: revert 0d7ad9f (GH-19850) (GH-27085)Filipe Laíns2021-07-111-63/+0
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-071-3/+3
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-021-3/+3
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-211-3/+3