diff options
Diffstat (limited to 'numpy/numarray/convolve.py')
-rw-r--r-- | numpy/numarray/convolve.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/numpy/numarray/convolve.py b/numpy/numarray/convolve.py deleted file mode 100644 index b2ff3bd13..000000000 --- a/numpy/numarray/convolve.py +++ /dev/null @@ -1,16 +0,0 @@ -from __future__ import division, absolute_import, print_function - -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) |