rustpython-parser 0.4.0

Python language parser for Python3.
Documentation
---
source: parser/src/context.rs
expression: parse_ast
---
[
    AugAssign(
        StmtAugAssign {
            range: 0..16,
            target: Attribute(
                ExprAttribute {
                    range: 0..3,
                    value: Name(
                        ExprName {
                            range: 0..1,
                            id: Identifier(
                                "x",
                            ),
                            ctx: Load,
                        },
                    ),
                    attr: Identifier(
                        "y",
                    ),
                    ctx: Store,
                },
            ),
            op: Add,
            value: Tuple(
                ExprTuple {
                    range: 7..16,
                    elts: [
                        Constant(
                            ExprConstant {
                                range: 8..9,
                                value: Int(
                                    1,
                                ),
                                kind: None,
                            },
                        ),
                        Constant(
                            ExprConstant {
                                range: 11..12,
                                value: Int(
                                    2,
                                ),
                                kind: None,
                            },
                        ),
                        Constant(
                            ExprConstant {
                                range: 14..15,
                                value: Int(
                                    3,
                                ),
                                kind: None,
                            },
                        ),
                    ],
                    ctx: Load,
                },
            ),
        },
    ),
]