Index(); withitem()
This commit is contained in:
parent
4cba2dfea3
commit
675b112a16
@ -30,5 +30,5 @@ HANDLER_FREE_NODES = [
|
||||
ast.Add, ast.Sub, ast.Mult, ast.Div, ast.FloorDiv, ast.Mod, ast.LShift, ast.RShift, ast.BitOr, ast.BitXor, ast.BitAnd, ast.MatMult,
|
||||
ast.Eq, ast.NotEq, ast.Lt, ast.LtE, ast.Gt, ast.GtE, ast.Is, ast.IsNot, ast.In, ast.NotIn,
|
||||
ast.Load, ast.Store,
|
||||
ast.arg, ast.arguments, ast.keyword,
|
||||
ast.arg, ast.arguments, ast.keyword, ast.withitem,
|
||||
]
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
from .definitions import FunctionDef, Return, Lambda
|
||||
from .statements import Pass, Assign, AnnAssign, AugAssign
|
||||
from .expressions import Expr, UnaryOp, BinOp, Call, Compare, Attribute, Subscript, Slice, keyword, IfExp
|
||||
from .expressions import Expr, UnaryOp, BinOp, Call, Compare, Attribute, Subscript, Slice, keyword, IfExp, Index
|
||||
from .literals import Constant, Tuple, List, Set, Dict, FormattedValue, JoinedStr
|
||||
from .variables import Name
|
||||
from .control_flow import If, For, Continue, Break, With, Raise
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user