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