diff options
Diffstat (limited to 'numpy/tests/pass/ufuncs.py')
-rw-r--r-- | numpy/tests/pass/ufuncs.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/numpy/tests/pass/ufuncs.py b/numpy/tests/pass/ufuncs.py new file mode 100644 index 000000000..c81ac48d1 --- /dev/null +++ b/numpy/tests/pass/ufuncs.py @@ -0,0 +1,11 @@ +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__ |