From: Guido van Rossum Date: Fri, 9 Feb 2007 22:43:10 +0000 (+0000) Subject: Fix the roundtripping function. X-Git-Tag: v3.0a1~1237 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0bcbb0d4d48162195382d35f3cf63a2fdee46374;p=thirdparty%2FPython%2Fcpython.git Fix the roundtripping function. --- diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 138ed740ffa4..d6c37775f0e4 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -123,7 +123,7 @@ def dump_tokens(s): def roundtrip(s): f = StringIO(s) source = untokenize(generate_tokens(f.readline)) - print(source, end=' ') + print(source, end="") # This is an example from the docs, set up as a doctest. def decistmt(s):