MCPcopy Create free account
hub / github.com/numpy/numpy / PyArray_SelectkindConverter

Function PyArray_SelectkindConverter

numpy/core/src/multiarray/conversion_utils.c:609–615  ·  view source on GitHub ↗

NUMPY_API * Convert object to select kind */

Source from the content-addressed store, hash-verified

607 * Convert object to select kind
608 */
609NPY_NO_EXPORT int
610PyArray_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
617static int searchside_parser(char const *str, Py_ssize_t length, void *data)
618{

Callers

nothing calls this directly

Calls 1

string_converter_helperFunction · 0.85

Tested by

no test coverage detected