rustpython-parser 0.4.0

Python language parser for Python3.
Documentation
---
source: parser/src/string.rs
expression: parse_ast
---
[
    FormattedValue(
        ExprFormattedValue {
            range: 0..11,
            value: Compare(
                ExprCompare {
                    range: 3..9,
                    left: Constant(
                        ExprConstant {
                            range: 3..4,
                            value: Int(
                                1,
                            ),
                            kind: None,
                        },
                    ),
                    ops: [
                        NotEq,
                    ],
                    comparators: [
                        Constant(
                            ExprConstant {
                                range: 8..9,
                                value: Int(
                                    2,
                                ),
                                kind: None,
                            },
                        ),
                    ],
                },
            ),
            conversion: None,
            format_spec: None,
        },
    ),
]