diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2010-12-11 11:48:21 -0800 |
---|---|---|
committer | Mark Wiebe <mwwiebe@gmail.com> | 2011-01-09 01:54:55 -0800 |
commit | 74530a081758c6bd70ccc4cb0cf33ab9c00c641f (patch) | |
tree | 2be4cfa2af6216c47cde4dbe28246d452968f851 /numpy/core/numeric.py | |
parent | 2dc6e3a6001c2214bfc2c9eb87b1e389fd04e86f (diff) | |
download | numpy-74530a081758c6bd70ccc4cb0cf33ab9c00c641f.tar.gz |
ENH: iter: Start Python wrapper of new iterator
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index dbad73cfe..915dc10fd 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1,4 +1,4 @@ -__all__ = ['newaxis', 'ndarray', 'flatiter', 'ufunc', +__all__ = ['newaxis', 'ndarray', 'flatiter', 'newiter', 'ufunc', 'arange', 'array', 'zeros', 'empty', 'broadcast', 'dtype', 'fromstring', 'fromfile', 'frombuffer', 'int_asbuffer', 'where', 'argwhere', @@ -54,6 +54,7 @@ BUFSIZE = multiarray.BUFSIZE ndarray = multiarray.ndarray flatiter = multiarray.flatiter +newiter = multiarray.newiter broadcast = multiarray.broadcast dtype = multiarray.dtype ufunc = type(sin) |