diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-06-02 01:23:31 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-06-02 01:23:31 +0000 |
commit | 0293199869cce0a8dab3a589ee7b05249ff6be33 (patch) | |
tree | b5e10062f78c6fd9b15d51a3a0845f89e33ef954 /numpy/core/numeric.py | |
parent | ce75dc9f0921a81cb16fe8d79a3a5ba24efbb922 (diff) | |
download | numpy-0293199869cce0a8dab3a589ee7b05249ff6be33.tar.gz |
Fix-up handling of registering of data-types. Now it is done using a PyArray_Descr * object as it should be. Any Pyarray_Descr * object will do.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index c99ca75a8..014a729ff 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -3,7 +3,7 @@ __all__ = ['newaxis', 'ndarray', 'flatiter', 'ufunc', 'fromstring', 'fromfile', 'frombuffer','newbuffer', 'getbuffer', 'where', 'argwhere', 'concatenate', 'fastCopyAndTranspose', 'lexsort', - 'register_dtype', 'set_numeric_ops', 'can_cast', + 'set_numeric_ops', 'can_cast', 'asarray', 'asanyarray', 'ascontiguousarray', 'asfortranarray', 'isfortran', 'empty_like', 'zeros_like', 'correlate', 'convolve', 'inner', 'dot', 'outer', 'vdot', @@ -107,7 +107,6 @@ getbuffer = multiarray.getbuffer where = multiarray.where concatenate = multiarray.concatenate fastCopyAndTranspose = multiarray._fastCopyAndTranspose -register_dtype = multiarray.register_dtype set_numeric_ops = multiarray.set_numeric_ops can_cast = multiarray.can_cast lexsort = multiarray.lexsort |