From: Guido van Rossum Date: Tue, 4 Sep 2007 16:23:16 +0000 (+0000) Subject: Correction an issue reported by Mark Summerfeld. X-Git-Tag: v3.0a2~450 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=afe0cd194f866f78914096bc34e9285af7032b1f;p=thirdparty%2FPython%2Fcpython.git Correction an issue reported by Mark Summerfeld. --- diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index a3687f1b611e..cf2caf222ccc 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