plyplus
plyplus copied to clipboard
a friendly yet powerful LR-parser written in Python
Results
2
plyplus issues
Sort by
recently updated
recently updated
newest added
I grappled with supporting this in `_unescape_unicode_in_token` before deciding it was simpler to just drop this function and support unicode literals. A side-effect of this is that we've lost support...
In the Python grammar (plyplus/test/python.g) there are the following rules for lists: ``` list : LBRACK (list_inner|comprehension)? RBRACK ; ... list_inner : expr | expr COMMA (expr (COMMA)? )* ;...