rust-python-parser icon indicating copy to clipboard operation
rust-python-parser copied to clipboard

A Python parser written in Rust using nom

Results 3 rust-python-parser issues
Sort by recently updated
recently updated
newest added

Currently they are just parsed as regular strings with a prefix

enhancement

Starting with python 3.8, type comments are parsed by cpython's parser. We might want to support them. But that's a lot of work, so I'm not sure it's worth it

enhancement

Currently, the pretty-printer handles f-string like regular strings, which means it may output this: `f"foo {d[\"bar\"]} baz"`, which is invalid syntax, as backslashes are not allowed between curly brackets

bug