diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2020-10-19 13:31:16 +0200 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2020-10-19 13:33:01 +0200 |
commit | f1b9adb1c794ea36a31bdc304d3f8dc80833c008 (patch) | |
tree | 81dae180e6558be2e04d589fa774643ee05b7fba | |
parent | 953117443a4919a20ae0759209f76d5f5dba256f (diff) | |
download | numpy-f1b9adb1c794ea36a31bdc304d3f8dc80833c008.tar.gz |
TST: Added new typing tests
-rw-r--r-- | numpy/typing/tests/data/reveal/constants.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/typing/tests/data/reveal/constants.py b/numpy/typing/tests/data/reveal/constants.py index dc5803974..b2382e861 100644 --- a/numpy/typing/tests/data/reveal/constants.py +++ b/numpy/typing/tests/data/reveal/constants.py @@ -47,3 +47,6 @@ reveal_type(np.True_) # E: numpy.bool_ reveal_type(np.False_) # E: numpy.bool_ reveal_type(np.UFUNC_PYVALS_NAME) # E: str + +reveal_type(np.sctypeDict) # E: dict +reveal_type(np.sctypes) # E: TypedDict |