rustpython-parser 0.4.0

Python language parser for Python3.
Documentation
---
source: parser/src/string.rs
expression: parse_ast
---
[
    FormattedValue(
        ExprFormattedValue {
            range: 0..18,
            value: Name(
                ExprName {
                    range: 3..4,
                    id: Identifier(
                        "a",
                    ),
                    ctx: Load,
                },
            ),
            conversion: None,
            format_spec: None,
        },
    ),
    FormattedValue(
        ExprFormattedValue {
            range: 0..18,
            value: Name(
                ExprName {
                    range: 7..8,
                    id: Identifier(
                        "b",
                    ),
                    ctx: Load,
                },
            ),
            conversion: None,
            format_spec: None,
        },
    ),
    Constant(
        ExprConstant {
            range: 0..18,
            value: Str(
                "{foo}",
            ),
            kind: None,
        },
    ),
]