(
buf: PointerLike, src: StructPointer[Buffer], len: int, order: CharLike
)
| 253 | # PyBuffer_ToContiguous |
| 254 | @staticmethod |
| 255 | def to_contiguous( |
| 256 | buf: PointerLike, src: StructPointer[Buffer], len: int, order: CharLike |
| 257 | ) -> int: |
| 258 | return api_binding_base( |
| 259 | API_FUNCS["PyBuffer_ToContiguous"], buf, src, len, make_char(order) |
| 260 | ) |
| 261 | |
| 262 | |
| 263 | class PyByteArray(_CallBase): |
nothing calls this directly
no test coverage detected