]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Fix an unfortunate mis-conversion: sometimes "print x," must be
authorGuido van Rossum <guido@python.org>
Fri, 9 Feb 2007 20:50:08 +0000 (20:50 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 9 Feb 2007 20:50:08 +0000 (20:50 +0000)
commit08c47ba0df4ba87cdce34c126e5bdb28f8c6034c
tree2ad61bc5c105d4097db6fbe8ec7700877d182d94
parentfff80dfa4aacdea4be560c74553b683ffc81d214
Fix an unfortunate mis-conversion: sometimes "print x," must be
converted to "print(x, end=' ')", but other times it must be converted
to "print(x, end='')".  There's no easy way to find out, because it
depends on whether x ends with a newline.  I'm sure I'll find more
like this.
Lib/test/regrtest.py