diff options
Diffstat (limited to 'numpy/tests/pass/simple_py3.py')
-rw-r--r-- | numpy/tests/pass/simple_py3.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/tests/pass/simple_py3.py b/numpy/tests/pass/simple_py3.py new file mode 100644 index 000000000..c05a1ce61 --- /dev/null +++ b/numpy/tests/pass/simple_py3.py @@ -0,0 +1,6 @@ +import numpy as np + +array = np.array([1, 2]) + +# The @ operator is not in python 2 +array @ array |