Merge pull request #1623 from mallamanis/master

Add __matmul__ to supported operators.
This commit is contained in:
Dave Halter
2020-06-26 12:10:00 +02:00
committed by GitHub

View File

@@ -35,6 +35,7 @@ operator_to_magic_method = {
'+': '__add__',
'-': '__sub__',
'*': '__mul__',
'@': '__matmul__',
'/': '__truediv__',
'//': '__floordiv__',
'%': '__mod__',