rustpython-parser 0.4.0

Python language parser for Python3.
Documentation
---
source: parser/src/context.rs
expression: parse_ast
---
[
    With(
        StmtWith {
            range: 0..17,
            items: [
                WithItem {
                    range: 5..11,
                    context_expr: Constant(
                        ExprConstant {
                            range: 5..6,
                            value: Int(
                                1,
                            ),
                            kind: None,
                        },
                    ),
                    optional_vars: Some(
                        Name(
                            ExprName {
                                range: 10..11,
                                id: Identifier(
                                    "x",
                                ),
                                ctx: Store,
                            },
                        ),
                    ),
                },
            ],
            body: [
                Pass(
                    StmtPass {
                        range: 13..17,
                    },
                ),
            ],
            type_comment: None,
        },
    ),
]