class LambdaExpr(FuncItem, Expression): (source)
| Method | accept |
Undocumented |
| Method | expr |
Return the expression (the body) of the lambda. |
| Method | is_dynamic |
Undocumented |
| Property | name |
Undocumented |
Inherited from FuncItem:
| Method | __init__ |
Undocumented |
| Method | max_fixed_argc |
Undocumented |
| Method | set_line |
If target is a node, pull line (and column) information into this node. If column is specified, this will override any column information coming from a node. |
| Class Variable | __deletable__ |
Undocumented |
| Class Variable | __slots__ |
Undocumented |
| Instance Variable | arg_kinds |
Undocumented |
| Instance Variable | arg_names |
Undocumented |
| Instance Variable | arguments |
Undocumented |
| Instance Variable | body |
Undocumented |
| Instance Variable | expanded |
Undocumented |
| Instance Variable | is_async_generator |
Undocumented |
| Instance Variable | is_awaitable_coroutine |
Undocumented |
| Instance Variable | is_coroutine |
Undocumented |
| Instance Variable | is_generator |
Undocumented |
| Instance Variable | is_overload |
Undocumented |
| Instance Variable | max_pos |
Undocumented |
| Instance Variable | min_args |
Undocumented |
| Instance Variable | type |
Undocumented |
| Instance Variable | unanalyzed_type |
Undocumented |
Inherited from FuncBase (via FuncItem):
| Instance Variable | info |
Undocumented |
| Instance Variable | is_class |
Undocumented |
| Instance Variable | is_final |
Undocumented |
| Instance Variable | is_property |
Undocumented |
| Instance Variable | is_static |
Undocumented |
| Property | fullname |
Undocumented |
| Instance Variable | _fullname |
Undocumented |
Inherited from Node (via FuncItem, FuncBase):
| Method | __str__ |
Undocumented |
Inherited from Context (via FuncItem, FuncBase, Node):
| Method | get_column |
Don't use. Use x.column. |
| Method | get_line |
Don't use. Use x.line. |
| Instance Variable | column |
Undocumented |
| Instance Variable | end_line |
Undocumented |
| Instance Variable | line |
Undocumented |
Inherited from Expression:
| Class Variable | __slots__ |
Undocumented |
Inherited from Node (via Expression):
| Method | __str__ |
Undocumented |
Inherited from Context (via Expression, Node):
| Method | __init__ |
Undocumented |
| Method | get_column |
Don't use. Use x.column. |
| Method | get_line |
Don't use. Use x.line. |
| Method | set_line |
If target is a node, pull line (and column) information into this node. If column is specified, this will override any column information coming from a node. |
| Instance Variable | column |
Undocumented |
| Instance Variable | end_line |
Undocumented |
| Instance Variable | line |
Undocumented |
mypy.nodes.Node.acceptUndocumented
| Parameters | |
visitor:ExpressionVisitor[ | Undocumented |
| Returns | |
T | Undocumented |