NUMPY_API * Convert object to endian */
| 528 | * Convert object to endian |
| 529 | */ |
| 530 | NPY_NO_EXPORT int |
| 531 | PyArray_ByteorderConverter(PyObject *obj, char *endian) |
| 532 | { |
| 533 | return string_converter_helper( |
| 534 | obj, (void *)endian, byteorder_parser, "byteorder", "not recognized"); |
| 535 | } |
| 536 | |
| 537 | static int sortkind_parser(char const *str, Py_ssize_t length, void *data) |
| 538 | { |
nothing calls this directly
no test coverage detected