diff options
author | Eric V. Smith <eric@trueblade.com> | 2016-09-10 01:56:20 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2016-09-10 01:56:20 (GMT) |
commit | 451d0e38fcf50d976236d7d00ccfe8c1a2305086 (patch) | |
tree | 29e15833e76714f8f0f8b906871b82c8c1a42967 /Lib/traceback.py | |
parent | 052828db1538bf0d42d7e256da13c6e183974a13 (diff) | |
download | cpython-451d0e38fcf50d976236d7d00ccfe8c1a2305086.zip cpython-451d0e38fcf50d976236d7d00ccfe8c1a2305086.tar.gz cpython-451d0e38fcf50d976236d7d00ccfe8c1a2305086.tar.bz2 |
Issue 27948: Allow backslashes in the literal string portion of f-strings, but not in the expressions. Also, require expressions to begin and end with literal curly braces.
Diffstat (limited to 'Lib/traceback.py')
-rw-r--r-- | Lib/traceback.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/traceback.py b/Lib/traceback.py index a15b818..a1cb5fb 100644 --- a/Lib/traceback.py +++ b/Lib/traceback.py @@ -402,7 +402,7 @@ class StackSummary(list): count += 1 else: if count > 3: - result.append(f' [Previous line repeated {count-3} more times]'+'\n') + result.append(f' [Previous line repeated {count-3} more times]\n') last_file = frame.filename last_line = frame.lineno last_name = frame.name @@ -419,7 +419,7 @@ class StackSummary(list): row.append(' {name} = {value}\n'.format(name=name, value=value)) result.append(''.join(row)) if count > 3: - result.append(f' [Previous line repeated {count-3} more times]'+'\n') + result.append(f' [Previous line repeated {count-3} more times]\n') return result |