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

Function PyArray_GetNumericOps

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

NUMPY_API Get dictionary showing number functions that all arrays will use */

Source from the content-addressed store, hash-verified

196 Get dictionary showing number functions that all arrays will use
197*/
198NPY_NO_EXPORT PyObject *
199PyArray_GetNumericOps(void)
200{
201 /* 2018-09-09, 1.16 */
202 if (DEPRECATE("PyArray_GetNumericOps is deprecated.") < 0) {
203 return NULL;
204 }
205 return _PyArray_GetNumericOps();
206}
207
208static PyObject *
209_get_keywords(int rtype, PyArrayObject *out)

Callers

nothing calls this directly

Calls 1

_PyArray_GetNumericOpsFunction · 0.85

Tested by

no test coverage detected