mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Get rid of all two uses of backticks (bad Jeremy!).
This commit is contained in:
parent
f1624cd2d6
commit
0e1cff56b4
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ def reflow_lines(s, depth):
|
|||
# XXX this should be fixed for real
|
||||
if i == -1 and 'GeneratorExp' in cur:
|
||||
i = size + 3
|
||||
assert i != -1, "Impossible line %d to reflow: %s" % (size, `s`)
|
||||
assert i != -1, "Impossible line %d to reflow: %s" % (size, repr(s))
|
||||
lines.append(padding + cur[:i])
|
||||
if len(lines) == 1:
|
||||
# find new size based on brace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue