| 123 | |
| 124 | |
| 125 | class VarObject(Struct): |
| 126 | ob_size: int = raw_type(ctypes.c_ssize_t) |
| 127 | ob_refcnt: int = raw_type(ctypes.c_ssize_t) |
| 128 | ob_type: StructPointer[TypeObject] |
| 129 | |
| 130 | |
| 131 | class ModuleDef(Struct): |
nothing calls this directly
no test coverage detected