diff options
author | Stephan Hoyer <shoyer@google.com> | 2018-10-14 15:27:39 -0700 |
---|---|---|
committer | Stephan Hoyer <shoyer@google.com> | 2018-10-14 15:33:16 -0700 |
commit | 56cd90fdae97e7447c3b0a076dc5647c43e1748f (patch) | |
tree | bea309dde84f66d7fac1cd0506b4809b488f7bc8 /numpy/core/overrides.py | |
parent | 2c4c93af0b2d20d85a7432093f31318cbf3c457f (diff) | |
download | numpy-56cd90fdae97e7447c3b0a076dc5647c43e1748f.tar.gz |
WIP: __array_ufunc__ for multiarray functions
Diffstat (limited to 'numpy/core/overrides.py')
-rw-r--r-- | numpy/core/overrides.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/overrides.py b/numpy/core/overrides.py index 906292613..77ee9e6ee 100644 --- a/numpy/core/overrides.py +++ b/numpy/core/overrides.py @@ -5,7 +5,7 @@ TODO: rewrite this in C for performance. import collections import functools -from numpy.core.multiarray import ndarray +from numpy.core._multiarray_umath import ndarray from numpy.compat._inspect import getargspec |