diff options
author | mattip <matti.picus@gmail.com> | 2018-10-16 08:20:49 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-10-16 08:20:49 +0300 |
commit | ad47653f702b9ca09f7d6b48f4b30a4c46520042 (patch) | |
tree | d0dab5920deba01872f8440527f8c96602b9b65e | |
parent | 78c0ed577b67b883c3929f95fb2e3108514ba137 (diff) | |
download | numpy-ad47653f702b9ca09f7d6b48f4b30a4c46520042.tar.gz |
MAINT: fix c comment from review
-rw-r--r-- | numpy/core/src/common/ufunc_override.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/common/ufunc_override.c b/numpy/core/src/common/ufunc_override.c index c9d1b5e63..b67422132 100644 --- a/numpy/core/src/common/ufunc_override.c +++ b/numpy/core/src/common/ufunc_override.c @@ -20,7 +20,7 @@ PyUFuncOverride_GetNonDefaultArrayUfunc(PyObject *obj) static PyObject *ndarray_array_ufunc = NULL; PyObject *cls_array_ufunc; - /* On first entry, import and cache ndarray's __array_ufunc__ */ + /* On first entry, cache ndarray's __array_ufunc__ */ if (ndarray_array_ufunc == NULL) { ndarray_array_ufunc = PyObject_GetAttrString((PyObject *)&PyArray_Type, "__array_ufunc__"); |