summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/oldnumeric/__init__.py')
-rw-r--r--numpy/oldnumeric/__init__.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/numpy/oldnumeric/__init__.py b/numpy/oldnumeric/__init__.py
new file mode 100644
index 000000000..768b407df
--- /dev/null
+++ b/numpy/oldnumeric/__init__.py
@@ -0,0 +1,15 @@
+
+from numpy import *
+from compat import *
+
+import numpy
+import compat
+
+__version__ = numpy.__version__
+
+__all__ = ['__version__']
+__all__ += numpy.__all__
+__all__ += compat.__all__
+
+del numpy
+del compat