diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 20:24:55 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 20:24:55 +0000 |
commit | db349674856abc7b2652546e937c85dbbbebbf9c (patch) | |
tree | b40f595ec04a36881459922d642a2b0267c8159c /numpy/numarray/convolve.py | |
parent | 0072bd2837bcc89928fcc58e8ede88edbe1dcccd (diff) | |
download | numpy-db349674856abc7b2652546e937c85dbbbebbf9c.tar.gz |
Move source, info, and who to NumPy
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) |