summaryrefslogtreecommitdiff
path: root/numpy/fft
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2021-07-09 10:26:53 +0200
committerBas van Beek <43369155+BvB93@users.noreply.github.com>2021-07-25 22:24:46 +0200
commit25e6e11a91c550fadad6250bf8701cfbd5af2d09 (patch)
treed03a75fdb7a3ac7b2bf37a35c092c531d310036a /numpy/fft
parenta2a5b30e109cbd18679617fcaadf195e79324c36 (diff)
downloadnumpy-25e6e11a91c550fadad6250bf8701cfbd5af2d09.tar.gz
ENH: Add annotations for `<module>.test` objects
Diffstat (limited to 'numpy/fft')
-rw-r--r--numpy/fft/__init__.pyi3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/fft/__init__.pyi b/numpy/fft/__init__.pyi
index 3c191a35f..efdaf864d 100644
--- a/numpy/fft/__init__.pyi
+++ b/numpy/fft/__init__.pyi
@@ -1,6 +1,9 @@
from typing import Any, List
+from numpy._pytesttester import PytestTester
+
__all__: List[str]
+test: PytestTester
def fft(a, n=..., axis=..., norm=...): ...
def ifft(a, n=..., axis=..., norm=...): ...