diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 08:36:12 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 08:36:12 +0000 |
commit | 4dd79b090e85566d3d3290357c3a9bbdd2558dc1 (patch) | |
tree | 6044831ae1bc79a09887b73c9fbf0bf91ece1532 /numpy/_import_tools.py | |
parent | de399f0bc36d35703bb87a79ce3510c7ccada586 (diff) | |
download | numpy-4dd79b090e85566d3d3290357c3a9bbdd2558dc1.tar.gz |
Added i0 natively for kaiser window
Diffstat (limited to 'numpy/_import_tools.py')
-rw-r--r-- | numpy/_import_tools.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/_import_tools.py b/numpy/_import_tools.py index 3139c1d63..6a08e00b0 100644 --- a/numpy/_import_tools.py +++ b/numpy/_import_tools.py @@ -264,12 +264,12 @@ class PackageLoader: This function is intended to shorten the need to import many of numpy's submodules constantly with statements such as - import numpy.linalg, numpy.fft, numpy.etc... + import numpy.linalg, numpy.dft, numpy.etc... Instead, you can say: import numpy - numpy.pkgload('linalg','fft',...) + numpy.pkgload('linalg','dft',...) or |