summaryrefslogtreecommitdiff
path: root/numpy/tests/typing/pass/ufuncs.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/tests/typing/pass/ufuncs.py')
-rw-r--r--numpy/tests/typing/pass/ufuncs.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/numpy/tests/typing/pass/ufuncs.py b/numpy/tests/typing/pass/ufuncs.py
deleted file mode 100644
index 82172952a..000000000
--- a/numpy/tests/typing/pass/ufuncs.py
+++ /dev/null
@@ -1,13 +0,0 @@
-import numpy as np
-
-np.sin(1)
-np.sin([1, 2, 3])
-np.sin(1, out=np.empty(1))
-np.matmul(np.ones((2, 2, 2)), np.ones((2, 2, 2)), axes=[(0, 1), (0, 1), (0, 1)])
-np.sin(1, signature="D")
-np.sin(1, extobj=[16, 1, lambda: None])
-np.sin(1) + np.sin(1)
-np.sin.types[0]
-np.sin.__name__
-
-np.abs(np.array([1]))