diff options
Diffstat (limited to 'numpy/numarray/convolve.py')
-rw-r--r-- | numpy/numarray/convolve.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/numpy/numarray/convolve.py b/numpy/numarray/convolve.py new file mode 100644 index 000000000..6c40ef111 --- /dev/null +++ b/numpy/numarray/convolve.py @@ -0,0 +1,14 @@ +try: + from stsci.convolve import * +except ImportError: + try: + from scipy.stsci.convolve import * + except ImportError: + msg = \ +"""The convolve package is not installed. + +It can be downloaded by checking out the latest source from +http://svn.scipy.org/svn/scipy/trunk/Lib/stsci or by downloading and +installing all of SciPy from http://www.scipy.org. +""" + raise ImportError(msg) |