Fixed awkward wording.

This commit is contained in:
Eric V. Smith 2015-08-28 14:27:58 -04:00
parent c0c7101fa5
commit 35c0d9cc75
1 changed files with 3 additions and 3 deletions

View File

@ -212,9 +212,9 @@ Escape sequences
----------------
Scanning an f-string for expressions happens after escape sequences
are decode. Because hex(ord('{')) == 0x7b, that means that the
f-string f'\u007b4*10}' is decoded to f'{4*10}', which evaluates as
the integer 40::
are decoded. Because hex(ord('{')) == 0x7b, the f-string
f'\u007b4*10}' is decoded to f'{4*10}', which evaluates as the integer
40::
>>> f'\u007b4*10}'
'40'