diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-01-18 13:41:14 -0800 |
---|---|---|
committer | Mark Wiebe <mwwiebe@gmail.com> | 2011-01-18 13:41:14 -0800 |
commit | 81a28e7309e13f0a22464697b14c2c7d4c272ea5 (patch) | |
tree | 5830c6981c2e8bd7b23537070bbc9377ec08b16d /numpy/core/numeric.py | |
parent | ee06d183c407ea315b2eb3ef41ee422b0ea30251 (diff) | |
download | numpy-81a28e7309e13f0a22464697b14c2c7d4c272ea5.tar.gz |
ENH: core: Add PyArray_MinScalarType and expose it to Python
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 4648f4bb0..a39ef62bd 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -3,7 +3,7 @@ __all__ = ['newaxis', 'ndarray', 'flatiter', 'newiter', 'nested_iters', 'ufunc', 'dtype', 'fromstring', 'fromfile', 'frombuffer', 'int_asbuffer', 'where', 'argwhere', 'concatenate', 'fastCopyAndTranspose', 'lexsort', - 'set_numeric_ops', 'can_cast', 'promote_types', + 'set_numeric_ops', 'can_cast', 'promote_types', 'min_scalar_type', 'asarray', 'asanyarray', 'ascontiguousarray', 'asfortranarray', 'isfortran', 'empty_like', 'zeros_like', 'correlate', 'convolve', 'inner', 'dot', 'outer', 'vdot', @@ -213,6 +213,7 @@ fastCopyAndTranspose = multiarray._fastCopyAndTranspose set_numeric_ops = multiarray.set_numeric_ops can_cast = multiarray.can_cast promote_types = multiarray.promote_types +min_scalar_type = multiarray.min_scalar_type lexsort = multiarray.lexsort compare_chararrays = multiarray.compare_chararrays putmask = multiarray.putmask |