summaryrefslogtreecommitdiff
path: root/scipy/base/numeric.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-10-29 00:00:20 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-10-29 00:00:20 +0000
commitb170dbb43ee5f24b4064aca19c569dde48d3da83 (patch)
tree48a56f2f50ba8e990433b4c6fca3e20c4d3aa349 /scipy/base/numeric.py
parentb5ea6c195a2f5415eb033f1f26c452afe47c029e (diff)
downloadnumpy-b170dbb43ee5f24b4064aca19c569dde48d3da83.tar.gz
Added PyUFunc_On_Om to UFunc C-API
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r--scipy/base/numeric.py3
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):