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

Function array_inplace_remainder

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

Source from the content-addressed store, hash-verified

715}
716
717static PyObject *
718array_inplace_remainder(PyArrayObject *m1, PyObject *m2)
719{
720 INPLACE_GIVE_UP_IF_NEEDED(
721 m1, m2, nb_inplace_remainder, array_inplace_remainder);
722 return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.remainder);
723}
724
725static PyObject *
726array_inplace_power(PyArrayObject *a1, PyObject *o2, PyObject *NPY_UNUSED(modulo))

Callers

nothing calls this directly

Tested by

no test coverage detected