diff options
author | Robert Kern <robert.kern@gmail.com> | 2005-09-29 10:08:49 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2005-09-29 10:08:49 +0000 |
commit | 56728d50e7e23f541c2f599a831c49a74b75db57 (patch) | |
tree | b96683cf1cfaf4e402c9e87eccd4e33b29507f3e /scipy/base/numeric.py | |
parent | 305fabee5b1cf1d03ace5e4aa4bb66b41a358f05 (diff) | |
download | numpy-56728d50e7e23f541c2f599a831c49a74b75db57.tar.gz |
r3532@Blasphemy: kern | 2005-09-29 03:08:25 -0700
More test fixes
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r-- | scipy/base/numeric.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py index 8d7f0aad3..d3d5470d1 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -1,11 +1,12 @@ import sys +import types, math + import multiarray import umath from umath import * from numerictypes import * - -import types, math +from _compiled_base import _insert newaxis = None |