Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.4k
Closed
Description
Feature or enhancement
The_ctypes
extension implements types as static types. They should be converted to heap types: see issuegh-103092 for the rationale.
Problem: thePyCStgDict
type is kind of special, it's a "metaclass" which creates a new class and then replaces the class namespace (type dict) with a custom "stgdict". See thePyCStructType_new()
function.
Previous attempts to convert_ctypes
types to heap types:
- April 2023: PRgh-103092: Adapt _ctypes's PyCStgDict type to heap type #103932
- January 2024: PRgh-103092: Port some
_ctypes
data types to heap types #113630