diff options
author | Guido van Rossum <guido@python.org> | 2007-09-04 16:23:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-09-04 16:23:16 (GMT) |
commit | afe0cd194f866f78914096bc34e9285af7032b1f (patch) | |
tree | b78594c49f3ee1f0952908ab89b301ff8275ac7c /Doc | |
parent | 2d14098125fbda2b4fbc24dbc1651974e233f535 (diff) | |
download | cpython-afe0cd194f866f78914096bc34e9285af7032b1f.zip cpython-afe0cd194f866f78914096bc34e9285af7032b1f.tar.gz cpython-afe0cd194f866f78914096bc34e9285af7032b1f.tar.bz2 |
Correction an issue reported by Mark Summerfeld.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.0.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index a3687f1..cf2caf2 100644 --- a/Doc/whatsnew/3.0.rst +++ b/Doc/whatsnew/3.0.rst @@ -111,8 +111,8 @@ changes to rarely used features.) * The ``print()`` function doesn't support the "softspace" feature of the old ``print`` statement. For example, in Python 2.x, - ``print "A\n", "B\n"`` would write ``"A\nB\n"``; but in Python 3.0, - ``print("A\n", "B\n")`` writes ``"A\n B\n"``. + ``print "A\n", "B"`` would write ``"A\nB\n"``; but in Python 3.0, + ``print("A\n", "B")`` writes ``"A\n B\n"``. * Also, ``print`` and ``print (x, y)`` behave differently without warning: the former used to add a newline in 2.x, but does nothing |