Added more f-string test for empty expressions.

This commit is contained in:
Eric V. Smith 2015-09-23 08:00:01 -04:00
parent 1d44c41b0c
commit 548c4d3178
1 changed files with 3 additions and 0 deletions

View File

@ -296,6 +296,9 @@ f'{a * x()}'"""
"f'{!x:a}'",
"f'{ !xr:}'",
"f'{ !xr:a}'",
"f'{!}'",
"f'{:}'",
])
def test_parens_in_expressions(self):