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

Function array_remainder

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

Source from the content-addressed store, hash-verified

328}
329
330static PyObject *
331array_remainder(PyObject *m1, PyObject *m2)
332{
333 BINOP_GIVE_UP_IF_NEEDED(m1, m2, nb_remainder, array_remainder);
334 return PyArray_GenericBinaryFunction(m1, m2, n_ops.remainder);
335}
336
337static PyObject *
338array_divmod(PyObject *m1, PyObject *m2)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected