From db349674856abc7b2652546e937c85dbbbebbf9c Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Sat, 5 Aug 2006 20:24:55 +0000 Subject: Move source, info, and who to NumPy --- numpy/numarray/convolve.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 numpy/numarray/convolve.py (limited to 'numpy/numarray/convolve.py') 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) -- cgit v1.2.1