summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2005-12-30 13:40:45 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2005-12-30 13:40:45 +0000
commitddea42e581bf557434f09edea0019123f72b09a5 (patch)
treebe7cdc83c9d617e92fa253774d2f77cf6c72c6dd
parentd12ad062997ed0240c14f8f2fbff2e06604acff9 (diff)
downloadpython-numpy-ddea42e581bf557434f09edea0019123f72b09a5.tar.gz
python-numpy-ddea42e581bf557434f09edea0019123f72b09a5.tar.bz2
python-numpy-ddea42e581bf557434f09edea0019123f72b09a5.zip
Fixed importing _dotblas.
-rw-r--r--scipy/base/numeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py
index 10b429613..075c54a42 100644
--- a/scipy/base/numeric.py
+++ b/scipy/base/numeric.py
@@ -149,7 +149,7 @@ def vdot(a, b):
try:
# importing this changes the dot function for basic 4 types
# to blas-optimized versions.
- from scipy.lib._dotblas import dot, vdot, inner, alterdot, restoredot
+ from _dotblas import dot, vdot, inner, alterdot, restoredot
except ImportError:
def alterdot():
pass