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

    Type Alias ExprNode

    ExprNode:
        | BoolOp
        | NamedExpr
        | BinOp
        | UnaryOp
        | Lambda
        | IfExp
        | Dict
        | Set
        | ListComp
        | SetComp
        | DictComp
        | GeneratorExp
        | Await
        | Yield
        | YieldFrom
        | Compare
        | Call
        | FormattedValue
        | Interpolation
        | JoinedStr
        | TemplateStr
        | Constant
        | Attribute
        | Subscript
        | Starred
        | Name
        | List
        | Tuple
        | Slice

    The expr sum type: every kind of Python expression.