Commit 4582d7d9 authored by Tim Peters's avatar Tim Peters

A new test here relied on preserving invisible trailing

whitespace in expected output.  Stop that.
parent fae8f6a2
......@@ -49,11 +49,12 @@ if x == 1:
Some people use different formatting conventions, which makes
untokenize a little trickier. Note that this test involves trailing
whitespace after the colon. You can't see it, but it's there!
whitespace after the colon. Note that we use hex escapes to make the
two trailing blanks apparent in the expected output.
>>> roundtrip("if x == 1 : \\n"
... " print x\\n")
if x == 1 :
if x == 1 :\x20\x20
print x
Comments need to go in the right place.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment