• Home
  • Raw
  • Download

Lines Matching refs:expr

11         | Expression(expr body)
17 stmt* body, expr* decorator_list, expr? returns)
19 stmt* body, expr* decorator_list, expr? returns)
22 expr* bases,
25 expr* decorator_list)
26 | Return(expr? value)
28 | Delete(expr* targets)
29 | Assign(expr* targets, expr value)
30 | AugAssign(expr target, operator op, expr value)
32 | AnnAssign(expr target, expr annotation, expr? value, int simple)
35 | For(expr target, expr iter, stmt* body, stmt* orelse)
36 | AsyncFor(expr target, expr iter, stmt* body, stmt* orelse)
37 | While(expr test, stmt* body, stmt* orelse)
38 | If(expr test, stmt* body, stmt* orelse)
42 | Raise(expr? exc, expr? cause)
44 | Assert(expr test, expr? msg)
51 | Expr(expr value)
59 expr = BoolOp(boolop op, expr* values)
60 | BinOp(expr left, operator op, expr right)
61 | UnaryOp(unaryop op, expr operand)
62 | Lambda(arguments args, expr body)
63 | IfExp(expr test, expr body, expr orelse)
64 | Dict(expr* keys, expr* values)
65 | Set(expr* elts)
66 | ListComp(expr elt, comprehension* generators)
67 | SetComp(expr elt, comprehension* generators)
68 | DictComp(expr key, expr value, comprehension* generators)
69 | GeneratorExp(expr elt, comprehension* generators)
71 | Await(expr value)
72 | Yield(expr? value)
73 | YieldFrom(expr value)
76 | Compare(expr left, cmpop* ops, expr* comparators)
77 | Call(expr func, expr* args, keyword* keywords)
80 | FormattedValue(expr value, int? conversion, expr? format_spec)
81 | JoinedStr(expr* values)
88 | Attribute(expr value, identifier attr, expr_context ctx)
89 | Subscript(expr value, slice slice, expr_context ctx)
90 | Starred(expr value, expr_context ctx)
92 | List(expr* elts, expr_context ctx)
93 | Tuple(expr* elts, expr_context ctx)
100 slice = Slice(expr? lower, expr? upper, expr? step)
102 | Index(expr value)
113 comprehension = (expr target, expr iter, expr* ifs, int is_async)
115 excepthandler = ExceptHandler(expr? type, identifier? name, stmt* body)
118 arguments = (arg* args, arg? vararg, arg* kwonlyargs, expr* kw_defaults,
119 arg? kwarg, expr* defaults)
121 arg = (identifier arg, expr? annotation)
125 keyword = (identifier? arg, expr value)
130 withitem = (expr context_expr, expr? optional_vars)