diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-10-29 00:00:20 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-10-29 00:00:20 +0000 |
commit | b170dbb43ee5f24b4064aca19c569dde48d3da83 (patch) | |
tree | 48a56f2f50ba8e990433b4c6fca3e20c4d3aa349 /scipy/base/numeric.py | |
parent | b5ea6c195a2f5415eb033f1f26c452afe47c029e (diff) | |
download | numpy-b170dbb43ee5f24b4064aca19c569dde48d3da83.tar.gz |
Added PyUFunc_On_Om to UFunc C-API
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r-- | scipy/base/numeric.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py index 2be87bf87..85472dc56 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -2,7 +2,7 @@ __all__ = ['newaxis', 'ndarray', 'bigndarray', 'flatiter', 'ufunc', 'arange', 'array', 'zeros', 'empty', 'fromstring', 'fromfile', 'frombuffer', 'where', 'concatenate', 'fastCopyAndTranspose', - 'register_dtype', 'can_cast', + 'register_dtype', 'set_numeric_ops', 'can_cast', 'asarray', 'asanyarray', 'isfortran', 'zeros_like', 'empty_like', 'correlate', 'convolve', 'inner', 'dot', 'outer', 'vdot', 'alterdot', 'restoredot', 'cross', @@ -60,6 +60,7 @@ 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 def asarray(a, dtype=None, fortran=False): |