diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2019-06-30 12:12:54 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2019-06-30 12:42:00 -0700 |
commit | ae65a534645ca26992c208275c7a9554450edf73 (patch) | |
tree | 4c15fc19c78b254d246e9f329727f5667d4765c9 /numpy/core/multiarray.py | |
parent | d47451764b2189b24105b7e86c2b098103e75cf0 (diff) | |
download | numpy-ae65a534645ca26992c208275c7a9554450edf73.tar.gz |
BUG: Add missing `np.core.multiarray._get_ndarray_c_version` function
This must have been lost in the multiarray / umath merge.
Found by noticing that `add_newdocs` was being called on an object that does not exist.
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py index 663f4c04a..f468532aa 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -16,7 +16,7 @@ import numpy as np from numpy.core._multiarray_umath import * from numpy.core._multiarray_umath import ( _fastCopyAndTranspose, _flagdict, _insert, _reconstruct, _vec_string, - _ARRAY_API, _monotonicity + _ARRAY_API, _monotonicity, _get_ndarray_c_version ) __all__ = [ |