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

Function array_divmod

numpy/core/src/multiarray/number.c:337–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

335}
336
337static PyObject *
338array_divmod(PyObject *m1, PyObject *m2)
339{
340 BINOP_GIVE_UP_IF_NEEDED(m1, m2, nb_divmod, array_divmod);
341 return PyArray_GenericBinaryFunction(m1, m2, n_ops.divmod);
342}
343
344static PyObject *
345array_matrix_multiply(PyObject *m1, PyObject *m2)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected