diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-04 23:32:12 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-04 23:32:12 +0000 |
commit | f1cca04886d4f63f7b1ed5b382986af3a9ee6a61 (patch) | |
tree | 053f566b31cb6edc24a41b800ec7f2972c4bca40 /numpy/oldnumeric/__init__.py | |
parent | 8f26568de7cc97ac0dcedfd5061e08bb54770b61 (diff) | |
download | numpy-f1cca04886d4f63f7b1ed5b382986af3a9ee6a61.tar.gz |
Many name-changes in oldnumeric. This may break some numpy code that was using the oldnumeric interface.
Diffstat (limited to 'numpy/oldnumeric/__init__.py')
-rw-r--r-- | numpy/oldnumeric/__init__.py | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/numpy/oldnumeric/__init__.py b/numpy/oldnumeric/__init__.py index 67874f814..14895910f 100644 --- a/numpy/oldnumeric/__init__.py +++ b/numpy/oldnumeric/__init__.py @@ -1,33 +1,25 @@ +# Don't add these to the __all__ variable from numpy import * + +# Add these from compat import * from olddefaults import * -from typeconv import * from functions import * -import numpy import compat import olddefaults -import typeconv import functions +import numpy __version__ = numpy.__version__ +del numpy __all__ = ['__version__'] -__all__ += numpy.__all__ __all__ += compat.__all__ -__all__ += typeconv.__all__ -for name in olddefaults.__all__: - if name not in __all__: - __all__.append(name) - -for name in functions.__all__: - if name not in __all__: - __all__.apend(name) +__all__ += olddefaults.__all__ +__all__ += functions.__all__ -del name -del numpy del compat del olddefaults del functions -del typeconv |