Author: guido.van.rossum
Date: Tue Sep  4 18:23:16 2007
New Revision: 57966

Modified:
   python/branches/py3k/Doc/whatsnew/3.0.rst
Log:
Correction an issue reported by Mark Summerfeld.


Modified: python/branches/py3k/Doc/whatsnew/3.0.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.0.rst   (original)
+++ python/branches/py3k/Doc/whatsnew/3.0.rst   Tue Sep  4 18:23:16 2007
@@ -111,8 +111,8 @@
 
 * 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
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to