summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-15 08:09:50 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-15 08:09:50 +0000
commitd868ba28c1d31faa1b0b1b6684e316ae329bc549 (patch)
treebe55d577e9aeb697e2528eccab4b9c704209e3a7 /numpy/core/numeric.py
parent02f61f06d44bd8f118d9e9727910c77337857857 (diff)
downloadnumpy-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.py3
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',