(
view: StructPointer[Buffer],
exporter: PyObjectLike,
buf: PointerLike,
len: int,
readonly: int,
flags: int,
)
| 200 | # PyBuffer_FillInfo |
| 201 | @staticmethod |
| 202 | def fill_info( |
| 203 | view: StructPointer[Buffer], |
| 204 | exporter: PyObjectLike, |
| 205 | buf: PointerLike, |
| 206 | len: int, |
| 207 | readonly: int, |
| 208 | flags: int, |
| 209 | ) -> int: |
| 210 | return api_binding_base( |
| 211 | API_FUNCS["PyBuffer_FillInfo"], |
| 212 | view, |
| 213 | _deref_maybe(exporter), |
| 214 | buf, |
| 215 | len, |
| 216 | readonly, |
| 217 | flags, |
| 218 | ) |
| 219 | |
| 220 | # PyBuffer_FromContiguous |
| 221 | @staticmethod |
nothing calls this directly
no test coverage detected