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

    Type Alias StmtNode

    StmtNode:
        | FunctionDef
        | AsyncFunctionDef
        | ClassDef
        | Return
        | Delete
        | Assign
        | TypeAlias
        | AugAssign
        | AnnAssign
        | For
        | AsyncFor
        | While
        | If
        | With
        | AsyncWith
        | Match
        | Raise
        | Try
        | TryStar
        | Assert
        | Import
        | ImportFrom
        | Global
        | Nonlocal
        | Expr
        | Pass
        | Break
        | Continue
        | Comment

    The stmt sum type: every kind of Python statement, plus Comment as a py-ast extension.