summaryrefslogtreecommitdiff
path: root/scipy/base/numeric.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-19 23:41:29 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-19 23:41:29 +0000
commit2d0b625d58a48525ded47c4d184ad3837e71c316 (patch)
tree6ee5981bd1723dfde53fbf92d7fba58e897188cb /scipy/base/numeric.py
parentdc87df7f9c06d35ab172d9961f7c81a0148a212d (diff)
downloadnumpy-2d0b625d58a48525ded47c4d184ad3837e71c316.tar.gz
Fixing some array scalar inconsistencies.
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r--scipy/base/numeric.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py
index a559d2331..e128e1b6a 100644
--- a/scipy/base/numeric.py
+++ b/scipy/base/numeric.py
@@ -1,11 +1,10 @@
import sys
import multiarray
+import umath
from umath import *
from numerictypes import *
-#import _numpy # for freeze dependency resolution (at least on Mac)
-
import types, math
newaxis = None
@@ -321,3 +320,7 @@ def getbufsize(size):
# Set the UFUNC_ERRMASK_NAME to something
seterr(where='builtin')
setbufsize(UFUNC_BUFSIZE_DEFAULT,where='builtin')
+
+inf = PINF
+nan = NAN
+from oldnumeric import *