summaryrefslogtreecommitdiff
path: root/numpy/fft/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/fft/__init__.py')
-rw-r--r--numpy/fft/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/fft/__init__.py b/numpy/fft/__init__.py
index a86bb3ac0..fd5e47580 100644
--- a/numpy/fft/__init__.py
+++ b/numpy/fft/__init__.py
@@ -200,9 +200,13 @@ For examples, see the various functions.
"""
+from . import _pocketfft, helper
from ._pocketfft import *
from .helper import *
+__all__ = _pocketfft.__all__.copy()
+__all__ += helper.__all__
+
from numpy._pytesttester import PytestTester
test = PytestTester(__name__)
del PytestTester