From b170dbb43ee5f24b4064aca19c569dde48d3da83 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Sat, 29 Oct 2005 00:00:20 +0000 Subject: Added PyUFunc_On_Om to UFunc C-API --- scipy/base/numeric.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scipy/base/numeric.py') 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): -- cgit v1.2.1