rustpython-parser 0.4.0

Python language parser for Python3.
Documentation
---
source: parser/src/context.rs
expression: parse_ast
---
[
    Assign(
        StmtAssign {
            range: 0..19,
            targets: [
                Tuple(
                    ExprTuple {
                        range: 0..7,
                        elts: [
                            Name(
                                ExprName {
                                    range: 1..2,
                                    id: Identifier(
                                        "x",
                                    ),
                                    ctx: Store,
                                },
                            ),
                            Starred(
                                ExprStarred {
                                    range: 4..6,
                                    value: Name(
                                        ExprName {
                                            range: 5..6,
                                            id: Identifier(
                                                "y",
                                            ),
                                            ctx: Store,
                                        },
                                    ),
                                    ctx: Store,
                                },
                            ),
                        ],
                        ctx: Store,
                    },
                ),
            ],
            value: Tuple(
                ExprTuple {
                    range: 10..19,
                    elts: [
                        Constant(
                            ExprConstant {
                                range: 11..12,
                                value: Int(
                                    1,
                                ),
                                kind: None,
                            },
                        ),
                        Constant(
                            ExprConstant {
                                range: 14..15,
                                value: Int(
                                    2,
                                ),
                                kind: None,
                            },
                        ),
                        Constant(
                            ExprConstant {
                                range: 17..18,
                                value: Int(
                                    3,
                                ),
                                kind: None,
                            },
                        ),
                    ],
                    ctx: Load,
                },
            ),
            type_comment: None,
        },
    ),
]