Skip to content

Commit 84b1b00

Browse files
Add support for matplut in unparse
1 parent b7ae9ce commit 84b1b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythran/unparse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def _UnaryOp(self, t):
482482

483483
binop = {"Add": "+", "Sub": "-", "Mult": "*", "Div": "/", "Mod": "%",
484484
"LShift": "<<", "RShift": ">>", "BitOr": "|", "BitXor": "^",
485-
"BitAnd": "&", "FloorDiv": "//", "Pow": "**"}
485+
"BitAnd": "&", "FloorDiv": "//", "Pow": "**", "MatMult": "@"}
486486

487487
def _BinOp(self, t):
488488
self.write("(")

0 commit comments

Comments
 (0)