diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2005-12-16 13:06:13 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2005-12-16 13:06:13 +0000 |
commit | af25411d8966bcf1562f1872ad2d724e9e466d5b (patch) | |
tree | e8adafd6f0a92d0e3b07b31817e3f9f3cb470374 /scipy/base/numeric.py | |
parent | 3464418761b89f678c112224a4b0dfd1ffe871f8 (diff) | |
download | numpy-af25411d8966bcf1562f1872ad2d724e9e466d5b.tar.gz |
Moved dotblas back to scipy.corelib (scipy.base.numeric tries to import it)
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r-- | scipy/base/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py index b3dc38d97..f81195e13 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -152,7 +152,7 @@ def vdot(a, b): try: # importing this changes the dot function for basic 4 types # to blas-optimized versions. - from scipy.basic._dotblas import dot, vdot, inner, alterdot, restoredot + from scipy.lib._dotblas import dot, vdot, inner, alterdot, restoredot except ImportError: def alterdot(): pass |