class documentation

class LambdaExpr(FuncItem, Expression): (source)

View In Hierarchy

Lambda expression
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
def accept(self, visitor): (source)

Undocumented

Parameters
visitor:ExpressionVisitor[T]Undocumented
Returns
TUndocumented
def expr(self): (source)
Return the expression (the body) of the lambda.
Returns
ExpressionUndocumented
def is_dynamic(self): (source)

Undocumented

Returns
boolUndocumented
@property
name: str = (source)

Undocumented