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/__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/__init__.py')
-rw-r--r-- | numpy/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index d83ff5172..42f987b24 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -37,14 +37,14 @@ else: import lib from lib import * import linalg - import dft + import fft import random __all__ = ['__version__', 'pkgload', 'PackageLoader', 'ScipyTest', 'NumpyTest', 'show_config'] __all__ += core.__all__ __all__ += lib.__all__ - __all__ += ['linalg', 'dft', 'random'] + __all__ += ['linalg', 'fft', 'random'] if __doc__ is not None: __doc__ += """ @@ -57,7 +57,7 @@ lib --- Basic functions used by several sub-packages and useful to have in the main name-space. random --- Core Random Tools linalg --- Core Linear Algebra Tools -dft --- Core FFT routines +fft --- Core FFT routines testing --- Scipy testing tools These packages require explicit import |