rustpython-parser 0.4.0

Python language parser for Python3.
Documentation
---
source: parser/src/string.rs
expression: parse_ast
---
[
    FormattedValue(
        ExprFormattedValue {
            range: 0..15,
            value: Name(
                ExprName {
                    range: 3..6,
                    id: Identifier(
                        "foo",
                    ),
                    ctx: Load,
                },
            ),
            conversion: None,
            format_spec: Some(
                JoinedStr(
                    ExprJoinedStr {
                        range: 0..15,
                        values: [
                            FormattedValue(
                                ExprFormattedValue {
                                    range: 0..15,
                                    value: Name(
                                        ExprName {
                                            range: 8..12,
                                            id: Identifier(
                                                "spec",
                                            ),
                                            ctx: Load,
                                        },
                                    ),
                                    conversion: None,
                                    format_spec: None,
                                },
                            ),
                        ],
                    },
                ),
            ),
        },
    ),
]