py-ast - v1.16.0
    Preparing search index...

    Interface Comprehension

    A single for ... in ... clause within a comprehension, including any if filters.

    interface Comprehension {
        lineno?: number;
        col_offset?: number;
        end_lineno?: number;
        end_col_offset?: number;
        inlineComment?: Comment;
        nodeType: "Comprehension";
        target: ExprNode;
        iter: ExprNode;
        ifs: ExprNode[];
        is_async: number;
    }

    Hierarchy (View Summary)

    Index
    lineno?: number

    1-indexed source line the node starts on.

    col_offset?: number

    0-indexed byte offset (UTF-8) within lineno where the node starts.

    end_lineno?: number

    1-indexed source line the node ends on.

    end_col_offset?: number

    0-indexed byte offset (UTF-8) within end_lineno where the node ends.

    inlineComment?: Comment

    Optional inline comment attached to this node.

    nodeType: "Comprehension"
    target: ExprNode
    iter: ExprNode
    ifs: ExprNode[]
    is_async: number

    1 if this clause is async for, 0 for a plain for.