From 6408d0d38af09323b9192d0185f8435060e4e93a Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Mon, 12 Jun 2006 23:13:30 +0000 Subject: Fix-up oldnumeric module --- numpy/oldnumeric/__init__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 numpy/oldnumeric/__init__.py (limited to 'numpy/oldnumeric/__init__.py') 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 -- cgit v1.2.1