Lines Matching refs:args
48 args = node.children[1:]
49 if len(args) == 1 and parend_expr.match(args[0]):
55 if args and args[-1] == Comma():
56 args = args[:-1]
58 if args and args[0] == pytree.Leaf(token.RIGHTSHIFT, ">>"):
59 assert len(args) >= 2
60 file = args[1].clone()
61 args = args[3:] # Strip a possible comma after the file expression
62 # Now synthesize a print(args, sep=..., end=..., file=...) node.
63 l_args = [arg.clone() for arg in args]