| 97 | |
| 98 | |
| 99 | class Buffer(Struct): |
| 100 | buf: VoidPointer |
| 101 | obj: VoidPointer |
| 102 | len: int |
| 103 | readonly: int |
| 104 | itemsize: int |
| 105 | format: bytes |
| 106 | ndim: int |
| 107 | shape: TypedCPointer[int] = raw_type(ctypes.POINTER(ctypes.c_ssize_t)) |
| 108 | strides: TypedCPointer[int] = raw_type(ctypes.POINTER(ctypes.c_ssize_t)) |
| 109 | suboffsets: TypedCPointer[int] = raw_type(ctypes.POINTER(ctypes.c_ssize_t)) |
| 110 | internal: VoidPointer |
| 111 | |
| 112 | |
| 113 | class TypeObject(Struct): |
nothing calls this directly
no test coverage detected