diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-15 08:09:50 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-15 08:09:50 +0000 |
commit | d868ba28c1d31faa1b0b1b6684e316ae329bc549 (patch) | |
tree | be55d577e9aeb697e2528eccab4b9c704209e3a7 /numpy/core/numeric.py | |
parent | 02f61f06d44bd8f118d9e9727910c77337857857 (diff) | |
download | numpy-d868ba28c1d31faa1b0b1b6684e316ae329bc549.tar.gz |
Made dtypedescr name attribute always report bit-width; fixed memmap slicing; Improved documentation of convertfile and convertall in convertcode.py
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 82f720c71..d4a23d2f1 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1,6 +1,7 @@ __all__ = ['newaxis', 'ndarray', 'bigndarray', 'flatiter', 'ufunc', 'arange', 'array', 'zeros', 'empty', 'broadcast', 'dtype', - 'fromstring', 'fromfile', 'frombuffer','newbuffer','getbuffer', + 'fromstring', 'fromfile', 'frombuffer','newbuffer', + 'getbuffer', 'where', 'concatenate', 'fastCopyAndTranspose', 'lexsort', 'register_dtype', 'set_numeric_ops', 'can_cast', 'asarray', 'asanyarray', 'isfortran', 'zeros_like', 'empty_like', |