[Python-3000-checkins] r57966 - python/branches/py3k/Doc/whatsnew/3.0.rst

guido.van.rossum python-3000-checkins at python.org
Tue Sep 4 18:23:16 CEST 2007


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


More information about the Python-3000-checkins mailing list