From afe0cd194f866f78914096bc34e9285af7032b1f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 4 Sep 2007 16:23:16 +0000 Subject: Correction an issue reported by Mark Summerfeld. --- Doc/whatsnew/3.0.rst | 4 ++-- 1 file 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 -- cgit v0.12