(
ndims: int,
shape: PointerLike,
strides: PointerLike,
itemsize: int,
order: CharLike,
)
| 182 | # PyBuffer_FillContiguousStrides |
| 183 | @staticmethod |
| 184 | def fill_contiguous_strides( |
| 185 | ndims: int, |
| 186 | shape: PointerLike, |
| 187 | strides: PointerLike, |
| 188 | itemsize: int, |
| 189 | order: CharLike, |
| 190 | ) -> None: |
| 191 | return api_binding_base( |
| 192 | API_FUNCS["PyBuffer_FillContiguousStrides"], |
| 193 | ndims, |
| 194 | shape, |
| 195 | strides, |
| 196 | itemsize, |
| 197 | make_char(order), |
| 198 | ) |
| 199 | |
| 200 | # PyBuffer_FillInfo |
| 201 | @staticmethod |
nothing calls this directly
no test coverage detected