diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-02 03:50:42 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-02 03:50:42 +0000 |
commit | b5ba0003def4cfa43b29d29df8f085d09609707b (patch) | |
tree | 1707278791b3131c8ac7a3bfbc7bc42114b9faab /scipy/base/oldnumeric.py | |
parent | 912b8ef191e420c9b5f7bce9f52b6fa815bdae54 (diff) | |
download | numpy-b5ba0003def4cfa43b29d29df8f085d09609707b.tar.gz |
Added UIntXX inplace of UintXX. Added Bool type
Diffstat (limited to 'scipy/base/oldnumeric.py')
-rw-r--r-- | scipy/base/oldnumeric.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scipy/base/oldnumeric.py b/scipy/base/oldnumeric.py index 521cbd6eb..9cf87218e 100644 --- a/scipy/base/oldnumeric.py +++ b/scipy/base/oldnumeric.py @@ -3,7 +3,7 @@ __all__ = ['asarray', 'array', 'concatenate', 'NewAxis', 'UFuncType', 'UfuncType', 'ArrayType', 'arraytype', - 'LittleEndian', + 'LittleEndian', 'Bool', 'Character', 'UnsignedInt8', 'UnsignedInt16', 'UnsignedInt', 'UInt8','UInt16','UInt32', # UnsignedInt64 and Unsigned128 added below if possible @@ -89,6 +89,7 @@ except AttributeError: else: __all__ += ['Int128'] +Bool = _dt_(bool) Int0 = _dt_(int) Int = _dt_(int) Float0 = _dt_(float) |