1
0
forked from VimPlug/jedi

Add __matmul__ to supported operators.

This commit is contained in:
Miltos
2020-06-25 17:35:07 +01:00
committed by GitHub
parent eabddb9698
commit bc5a8ddf87

View File

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