diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-06-12 14:18:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-12 14:18:53 +0300 |
commit | 5345c2575a28fa2dfbbec83c99636669476c2745 (patch) | |
tree | 65b590d4ef7d573d8df663058a130a38b991da9f /numpy/tests | |
parent | 9eabe2f87dbe087e878983bdd69edd8a9084c358 (diff) | |
parent | 8190116aa2fa58aba628b0a5cea768017acf82bf (diff) | |
download | numpy-5345c2575a28fa2dfbbec83c99636669476c2745.tar.gz |
Merge pull request #16574 from person142/dtype-constructor-types
MAINT: fix name of first parameter to dtype constructor in type stubs
Diffstat (limited to 'numpy/tests')
-rw-r--r-- | numpy/tests/typing/pass/dtype.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/tests/typing/pass/dtype.py b/numpy/tests/typing/pass/dtype.py new file mode 100644 index 000000000..f954fdd44 --- /dev/null +++ b/numpy/tests/typing/pass/dtype.py @@ -0,0 +1,3 @@ +import numpy as np + +np.dtype(dtype=np.int64) |