Author: [email protected] Branch: py3.5-raffael_t Changeset: r83936:fa2980eb159a Date: 2016-03-21 18:45 +0100 http://bitbucket.org/pypy/pypy/changeset/fa2980eb159a/
Log: Add simple mmult (@) test diff --git a/pypy/interpreter/test/test_35_mmult.py b/pypy/interpreter/test/test_35_mmult.py new file mode 100644 --- /dev/null +++ b/pypy/interpreter/test/test_35_mmult.py @@ -0,0 +1,8 @@ +import numpy + +x = numpy.ones(3) +m = numpy.eye(3) + +a = x @ m + +print(a) \ No newline at end of file _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
