diff options
Diffstat (limited to 'numpy/core/src/umathmodule.c.src')
-rw-r--r-- | numpy/core/src/umathmodule.c.src | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/core/src/umathmodule.c.src b/numpy/core/src/umathmodule.c.src index b35597447..461671818 100644 --- a/numpy/core/src/umathmodule.c.src +++ b/numpy/core/src/umathmodule.c.src @@ -2262,8 +2262,10 @@ InitOtherOperators(PyObject *dictionary) { static struct PyMethodDef methods[] = { {"frompyfunc", (PyCFunction) ufunc_frompyfunc, METH_VARARGS | METH_KEYWORDS, doc_frompyfunc}, - {"update_use_defaults", (PyCFunction) ufunc_update_use_defaults, - METH_VARARGS , NULL}, + {"seterrlist", (PyCFunction) ufunc_seterr, + METH_VARARGS, NULL}, + {"geterrlist", (PyCFunction) ufunc_geterr, + METH_VARARGS, NULL}, {NULL, NULL, 0} /* sentinel */ }; |