diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-06-12 23:13:30 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-06-12 23:13:30 +0000 |
commit | 6408d0d38af09323b9192d0185f8435060e4e93a (patch) | |
tree | 838146fbd56c9eab52d04c5ee374f631b44bb982 /numpy/oldnumeric/__init__.py | |
parent | fbf0b479604c22e60215bb28cdedabfb821b9d75 (diff) | |
download | numpy-6408d0d38af09323b9192d0185f8435060e4e93a.tar.gz |
Fix-up oldnumeric module
Diffstat (limited to 'numpy/oldnumeric/__init__.py')
-rw-r--r-- | numpy/oldnumeric/__init__.py | 15 |
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 |