(view: StructPointer[Buffer], indices: PointerLike)
| 229 | # PyBuffer_GetPointer |
| 230 | @staticmethod |
| 231 | def get_pointer(view: StructPointer[Buffer], indices: PointerLike) -> PointerLike: |
| 232 | return api_binding_base(API_FUNCS["PyBuffer_GetPointer"], view, indices) |
| 233 | |
| 234 | # PyBuffer_IsContiguous |
| 235 | @staticmethod |
nothing calls this directly
no test coverage detected