diff options
author | Guido van Rossum <guido@python.org> | 2007-02-09 22:43:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-02-09 22:43:10 (GMT) |
commit | 0bcbb0d4d48162195382d35f3cf63a2fdee46374 (patch) | |
tree | 0814fe163b0533156c442170069cc21e5c1776bc /Lib/test/test_tokenize.py | |
parent | 9b8850439cc39c72db3e0c3b1a7e9cf00c643b13 (diff) | |
download | cpython-0bcbb0d4d48162195382d35f3cf63a2fdee46374.zip cpython-0bcbb0d4d48162195382d35f3cf63a2fdee46374.tar.gz cpython-0bcbb0d4d48162195382d35f3cf63a2fdee46374.tar.bz2 |
Fix the roundtripping function.
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r-- | Lib/test/test_tokenize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 138ed74..d6c3777 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): |