Correction an issue reported by Mark Summerfeld.
authorGuido van Rossum <guido@python.org>
Tue, 4 Sep 2007 16:23:16 +0000 (16:23 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 4 Sep 2007 16:23:16 +0000 (16:23 +0000)
Doc/whatsnew/3.0.rst

index a3687f1b611edbd32a2609eb899f8aa06c6cf17b..cf2caf222ccc1108b842a6f564755222a370cf19 100644 (file)
@@ -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