NUMPY_API Get dictionary showing number functions that all arrays will use */
| 196 | Get dictionary showing number functions that all arrays will use |
| 197 | */ |
| 198 | NPY_NO_EXPORT PyObject * |
| 199 | PyArray_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 | |
| 208 | static PyObject * |
| 209 | _get_keywords(int rtype, PyArrayObject *out) |
nothing calls this directly
no test coverage detected