summaryrefslogtreecommitdiff
path: root/numpy/random
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/random
parenta2a5b30e109cbd18679617fcaadf195e79324c36 (diff)
downloadnumpy-25e6e11a91c550fadad6250bf8701cfbd5af2d09.tar.gz
ENH: Add annotations for `<module>.test` objects
Diffstat (limited to 'numpy/random')
-rw-r--r--numpy/random/__init__.pyi3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/random/__init__.pyi b/numpy/random/__init__.pyi
index 48b620c48..5705bc4a7 100644
--- a/numpy/random/__init__.pyi
+++ b/numpy/random/__init__.pyi
@@ -1,5 +1,7 @@
from typing import List
+from numpy._pytesttester import PytestTester
+
from numpy.random._generator import Generator as Generator
from numpy.random._generator import default_rng as default_rng
from numpy.random._mt19937 import MT19937 as MT19937
@@ -66,3 +68,4 @@ from numpy.random.mtrand import (
)
__all__: List[str]
+test: PytestTester