summaryrefslogtreecommitdiff
path: root/numpy/numarray/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/numarray/__init__.py')
-rw-r--r--numpy/numarray/__init__.py38
1 files changed, 0 insertions, 38 deletions
diff --git a/numpy/numarray/__init__.py b/numpy/numarray/__init__.py
deleted file mode 100644
index 468324ced..000000000
--- a/numpy/numarray/__init__.py
+++ /dev/null
@@ -1,38 +0,0 @@
-from __future__ import division, absolute_import, print_function
-
-import warnings
-from numpy import ModuleDeprecationWarning
-
-from .util import *
-from .numerictypes import *
-from .functions import *
-from .ufuncs import *
-from .compat import *
-from .session import *
-
-from . import util
-from . import numerictypes
-from . import functions
-from . import ufuncs
-from . import compat
-from . import session
-
-_msg = "The numarray module will be dropped in Numpy 1.9"
-warnings.warn(_msg, ModuleDeprecationWarning)
-
-__all__ = ['session', 'numerictypes']
-__all__ += util.__all__
-__all__ += numerictypes.__all__
-__all__ += functions.__all__
-__all__ += ufuncs.__all__
-__all__ += compat.__all__
-__all__ += session.__all__
-
-del util
-del functions
-del ufuncs
-del compat
-
-from numpy.testing import Tester
-test = Tester().test
-bench = Tester().bench