Author: Raffael Tfirst <[email protected]>
Branch: py3.5
Changeset: r84263:4b92de1eb94a
Date: 2016-05-06 15:06 +0200
http://bitbucket.org/pypy/pypy/changeset/4b92de1eb94a/

Log:    Add astbuilder test for matmul

diff --git a/pypy/interpreter/astcompiler/test/test_astbuilder.py 
b/pypy/interpreter/astcompiler/test/test_astbuilder.py
--- a/pypy/interpreter/astcompiler/test/test_astbuilder.py
+++ b/pypy/interpreter/astcompiler/test/test_astbuilder.py
@@ -906,7 +906,8 @@
             ("/", ast.Div),
             ("*", ast.Mult),
             ("//", ast.FloorDiv),
-            ("%", ast.Mod)
+            ("%", ast.Mod),
+            ("@", ast.MatMul)
         )
         for op, ast_type in binops:
             bin = self.get_first_expr("a %s b" % (op,))
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to