rustpython-parser 0.4.0

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