class documentation

class GeneratorExpr(Expression): (source)

View In Hierarchy

Generator expression ... for ... in ... [ for ... in ... ] [ if ... ].

Method __init__ Undocumented
Method accept Undocumented
Class Variable __match_args__ Undocumented
Class Variable __slots__ Undocumented
Instance Variable condlists Undocumented
Instance Variable indices Undocumented
Instance Variable is_async Undocumented
Instance Variable left_expr Undocumented
Instance Variable sequences Undocumented

Inherited from Node (via Expression):

Method __str__ Undocumented

Inherited from Context (via Expression, Node):

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_column Undocumented
Instance Variable end_line Undocumented
Instance Variable line Undocumented
def __init__(self, left_expr: Expression, indices: list[Lvalue], sequences: list[Expression], condlists: list[list[Expression]], is_async: list[bool]): (source)

Undocumented

def accept(self, visitor: ExpressionVisitor[T]) -> T: (source)

Undocumented

__match_args__: tuple[str, ...] = (source)

Undocumented

__slots__: tuple[str, ...] = (source)

Undocumented

condlists = (source)

Undocumented

Undocumented

is_async = (source)

Undocumented

left_expr = (source)

Undocumented

sequences = (source)

Undocumented