summaryrefslogtreecommitdiff
path: root/numpy/fft/__init__.py
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2019-09-07 12:16:01 -0700
committerRalf Gommers <ralf.gommers@gmail.com>2019-09-07 14:52:03 -0700
commit36e7ad2e3ac248e9589f1aa9ed4238da81c2ed8e (patch)
tree247209c3ed7776e24b74616b2329d1449f5b8bcb /numpy/fft/__init__.py
parentc280ab6279c1e7c4298bfe559887799825ef87dc (diff)
downloadnumpy-36e7ad2e3ac248e9589f1aa9ed4238da81c2ed8e.tar.gz
MAINT: move pocketfft .py/.so to `_pocketfft`
These aren't public, and should have been added with underscores.
Diffstat (limited to 'numpy/fft/__init__.py')
-rw-r--r--numpy/fft/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/fft/__init__.py b/numpy/fft/__init__.py
index 64b35bc19..9bb7a9f24 100644
--- a/numpy/fft/__init__.py
+++ b/numpy/fft/__init__.py
@@ -3,7 +3,7 @@ from __future__ import division, absolute_import, print_function
# To get sub-modules
from .info import __doc__
-from .pocketfft import *
+from ._pocketfft import *
from .helper import *
from numpy._pytesttester import PytestTester