diff options
Diffstat (limited to 'numpy/oldnumeric/__init__.py')
-rw-r--r-- | numpy/oldnumeric/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/oldnumeric/__init__.py b/numpy/oldnumeric/__init__.py index 768b407df..439cfe907 100644 --- a/numpy/oldnumeric/__init__.py +++ b/numpy/oldnumeric/__init__.py @@ -1,15 +1,21 @@ from numpy import * from compat import * +from olddefaults import * import numpy import compat +import olddefaults __version__ = numpy.__version__ __all__ = ['__version__'] __all__ += numpy.__all__ __all__ += compat.__all__ +for name in olddefaults.__all__: + if name not in __all__: + __all__.append(name) del numpy del compat +del olddefaults |