summaryrefslogtreecommitdiff
path: root/scipy/base/numeric.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-29 09:23:46 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-29 09:23:46 +0000
commitca2d4dc36cd735c76f895d86e8424099603a9fed (patch)
tree142d564f27b86920c8ce4954d09605c23a57f6f3 /scipy/base/numeric.py
parent5daeb8eccba19179efd9469a0d916a18ab38dea0 (diff)
downloadnumpy-ca2d4dc36cd735c76f895d86e8424099603a9fed.tar.gz
Added a can_cast Python function.
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r--scipy/base/numeric.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py
index e0ccf41dc..8d7f0aad3 100644
--- a/scipy/base/numeric.py
+++ b/scipy/base/numeric.py
@@ -20,6 +20,7 @@ where = multiarray.where
concatenate = multiarray.concatenate
fastCopyAndTranspose = multiarray._fastCopyAndTranspose
register_dtype = multiarray.register_dtype
+can_cast = multiarray.can_cast
def asarray(a, dtype=None):
"""asarray(a,dtype=None) returns a as a NumPy array. Unlike array(),