diff options
author | mattip <matti.picus@gmail.com> | 2018-09-08 20:24:49 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-09-09 07:50:32 +0300 |
commit | 5e3412dfc139b733b136c2c3b508eb7bf7b8ec10 (patch) | |
tree | dab86a588ae34b5e706ac8a5f128c6ba8684e89e /numpy/core/numeric.py | |
parent | 1b400ea346db432a20994b9848a88a5f42567263 (diff) | |
download | numpy-5e3412dfc139b733b136c2c3b508eb7bf7b8ec10.tar.gz |
MAINT: remove redundant imports
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 1b4818b76..c93eab03b 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -18,7 +18,7 @@ from .multiarray import ( _fastCopyAndTranspose as fastCopyAndTranspose, ALLOW_THREADS, BUFSIZE, CLIP, MAXDIMS, MAY_SHARE_BOUNDS, MAY_SHARE_EXACT, RAISE, WRAP, arange, array, broadcast, can_cast, compare_chararrays, - concatenate, copyto, count_nonzero, dot, dtype, empty, + concatenate, copyto, dot, dtype, empty, empty_like, flatiter, frombuffer, fromfile, fromiter, fromstring, inner, int_asbuffer, lexsort, matmul, may_share_memory, min_scalar_type, ndarray, nditer, nested_iters, promote_types, |