(
obj: PyObjectLike, buffertype: int, order: CharLike
)
| 2064 | # PyMemoryView_GetContiguous |
| 2065 | @staticmethod |
| 2066 | def get_contiguous( |
| 2067 | obj: PyObjectLike, buffertype: int, order: CharLike |
| 2068 | ) -> PyObjectLike: |
| 2069 | return api_binding_base( |
| 2070 | API_FUNCS["PyMemoryView_GetContiguous"], |
| 2071 | _deref_maybe(obj), |
| 2072 | buffertype, |
| 2073 | make_char(order), |
| 2074 | ) |
| 2075 | |
| 2076 | |
| 2077 | class PyModuleDef(_CallBase): |
nothing calls this directly
no test coverage detected