diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-03-13 19:18:43 -0700 |
---|---|---|
committer | Mark Wiebe <mwwiebe@gmail.com> | 2011-03-13 19:18:43 -0700 |
commit | 37539398cbdb27cd4caebd58cf22a77ca9153416 (patch) | |
tree | 5fa0506de8a19bdecffab656a8b519511d2ca897 /numpy/core/numeric.py | |
parent | 52edb94fd5228b0d69ebc74ea963ae09ffb10b6f (diff) | |
download | numpy-37539398cbdb27cd4caebd58cf22a77ca9153416.tar.gz |
ENH: Rename 'np.newiter' to 'np.nditer'
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index fa9f19165..187296efe 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1,4 +1,4 @@ -__all__ = ['newaxis', 'ndarray', 'flatiter', 'newiter', 'nested_iters', 'ufunc', +__all__ = ['newaxis', 'ndarray', 'flatiter', 'nditer', 'nested_iters', 'ufunc', 'arange', 'array', 'zeros', 'count_nonzero', 'empty', 'broadcast', 'dtype', 'fromstring', 'fromfile', 'frombuffer', 'int_asbuffer', 'where', 'argwhere', @@ -54,7 +54,7 @@ BUFSIZE = multiarray.BUFSIZE ndarray = multiarray.ndarray flatiter = multiarray.flatiter -newiter = multiarray.newiter +nditer = multiarray.nditer nested_iters = multiarray.nested_iters broadcast = multiarray.broadcast dtype = multiarray.dtype |