File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -767,7 +767,8 @@ def ignore(self, node):
767
767
# same for operators
768
768
AND = OR = ADD = SUB = MULT = DIV = MOD = POW = LSHIFT = RSHIFT = \
769
769
BITOR = BITXOR = BITAND = FLOORDIV = INVERT = NOT = UADD = USUB = \
770
- EQ = NOTEQ = LT = LTE = GT = GTE = IS = ISNOT = IN = NOTIN = ignore
770
+ EQ = NOTEQ = LT = LTE = GT = GTE = IS = ISNOT = IN = NOTIN = \
771
+ MATMULT = ignore
771
772
772
773
# additional node types
773
774
COMPREHENSION = KEYWORD = FORMATTEDVALUE = handleChildren
Original file line number Diff line number Diff line change @@ -1736,3 +1736,10 @@ async def commit(session, data):
1736
1736
...
1737
1737
await trans.end()
1738
1738
''' )
1739
+
1740
+ @skipIf (version_info < (3 , 5 ), 'new in Python 3.5' )
1741
+ def test_matmul (self ):
1742
+ self .flakes ('''
1743
+ def foo(a, b):
1744
+ return a @ b
1745
+ ''' )
You can’t perform that action at this time.
0 commit comments