(
view: StructPointer[Buffer], buf: PointerLike, len: int, fort: CharLike
)
| 220 | # PyBuffer_FromContiguous |
| 221 | @staticmethod |
| 222 | def from_contiguous( |
| 223 | view: StructPointer[Buffer], buf: PointerLike, len: int, fort: CharLike |
| 224 | ) -> int: |
| 225 | return api_binding_base( |
| 226 | API_FUNCS["PyBuffer_FromContiguous"], view, buf, len, make_char(fort) |
| 227 | ) |
| 228 | |
| 229 | # PyBuffer_GetPointer |
| 230 | @staticmethod |
nothing calls this directly
no test coverage detected