diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-12-25 15:29:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-25 15:29:24 -0700 |
commit | bae3cfa01dc160f3e1731c21bfd9158cbcd83c32 (patch) | |
tree | de2ec788fa66c168f56128c2268ed62bac8e72ec /numpy/fft/__init__.py | |
parent | 3abb5f8c3cd0947d4cf64c3dbcd9fda5a5c22caa (diff) | |
parent | 0fe2a58c4434d7ee4e08f732e207c631bab6bc75 (diff) | |
download | numpy-bae3cfa01dc160f3e1731c21bfd9158cbcd83c32.tar.gz |
Merge pull request #11888 from mreineck/add_pocketfft
WIP: Add pocketfft sources to numpy for testing, benchmarks, etc.
Diffstat (limited to 'numpy/fft/__init__.py')
-rw-r--r-- | numpy/fft/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/fft/__init__.py b/numpy/fft/__init__.py index 44243b483..64b35bc19 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 .fftpack import * +from .pocketfft import * from .helper import * from numpy._pytesttester import PytestTester |