(format: StringLike)
| 246 | # PyBuffer_SizeFromFormat |
| 247 | @staticmethod |
| 248 | def size_from_format(format: StringLike) -> int: |
| 249 | return api_binding_base( |
| 250 | API_FUNCS["PyBuffer_SizeFromFormat"], make_string(format) |
| 251 | ) |
| 252 | |
| 253 | # PyBuffer_ToContiguous |
| 254 | @staticmethod |
nothing calls this directly
no test coverage detected