Some last fstring fixes.

This commit is contained in:
Dave Halter
2017-08-28 18:10:30 +02:00
parent cba82773d4
commit b921e280b0
4 changed files with 5 additions and 6 deletions

View File

@@ -11,9 +11,6 @@
single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
file_input: (NEWLINE | stmt)* ENDMARKER
eval_input: testlist NEWLINE* ENDMARKER
# Dave: A modification to parse f-strings.
testlist_comp_with_endmarker: testlist NEWLINE* ENDMARKER
decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
decorators: decorator+
decorated: decorators (classdef | funcdef | async_funcdef)