diff options
| author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 22:37:16 +0000 |
|---|---|---|
| committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 22:37:16 +0000 |
| commit | 5cfcf93bf09c3a78654099ddcb3b7b184e8d4615 (patch) | |
| tree | 2ba7ac321aa765f08bc2413f178fd74d4eb8c1ff /numpy/core/src/arrayobject.c | |
| parent | 490712cd35dcecfc9423de4bde0b29cb012dda25 (diff) | |
| download | numpy-5cfcf93bf09c3a78654099ddcb3b7b184e8d4615.tar.gz | |
More fixes...
Diffstat (limited to 'numpy/core/src/arrayobject.c')
| -rw-r--r-- | numpy/core/src/arrayobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/arrayobject.c b/numpy/core/src/arrayobject.c index 1d9e15976..1f23e77e1 100644 --- a/numpy/core/src/arrayobject.c +++ b/numpy/core/src/arrayobject.c @@ -8134,7 +8134,7 @@ arraydescr_reduce(PyArray_Descr *self, PyObject *args) ret = PyTuple_New(3); if (ret == NULL) return NULL; - mod = PyImport_ImportModule("numpy.base.multiarray"); + mod = PyImport_ImportModule("numpy.core.multiarray"); if (mod == NULL) {Py_DECREF(ret); return NULL;} obj = PyObject_GetAttrString(mod, "dtypedescr"); Py_DECREF(mod); |
