summaryrefslogtreecommitdiff
path: root/numpy/numarray/convolve.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-05 20:24:55 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-05 20:24:55 +0000
commitdb349674856abc7b2652546e937c85dbbbebbf9c (patch)
treeb40f595ec04a36881459922d642a2b0267c8159c /numpy/numarray/convolve.py
parent0072bd2837bcc89928fcc58e8ede88edbe1dcccd (diff)
downloadnumpy-db349674856abc7b2652546e937c85dbbbebbf9c.tar.gz
Move source, info, and who to NumPy
Diffstat (limited to 'numpy/numarray/convolve.py')
-rw-r--r--numpy/numarray/convolve.py14
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)