NUMPY_API * Convert object to select kind */
| 607 | * Convert object to select kind |
| 608 | */ |
| 609 | NPY_NO_EXPORT int |
| 610 | PyArray_SelectkindConverter(PyObject *obj, NPY_SELECTKIND *selectkind) |
| 611 | { |
| 612 | return string_converter_helper( |
| 613 | obj, (void *)selectkind, selectkind_parser, "select kind", |
| 614 | "must be 'introselect'"); |
| 615 | } |
| 616 | |
| 617 | static int searchside_parser(char const *str, Py_ssize_t length, void *data) |
| 618 | { |
nothing calls this directly
no test coverage detected