[Python-3000-checkins] r53719 - python/branches/p3yk/Misc/NEWS

guido.van.rossum python-3000-checkins at python.org
Sat Feb 10 00:52:15 CET 2007


Author: guido.van.rossum
Date: Sat Feb 10 00:52:14 2007
New Revision: 53719

Modified:
   python/branches/p3yk/Misc/NEWS
Log:
News about softspace.


Modified: python/branches/p3yk/Misc/NEWS
==============================================================================
--- python/branches/p3yk/Misc/NEWS	(original)
+++ python/branches/p3yk/Misc/NEWS	Sat Feb 10 00:52:14 2007
@@ -36,7 +36,15 @@
 Core and Builtins
 -----------------
 
-- PEP 3105: print is now a function.
+- PEP 3105: print is now a function.  Also (not in the PEP) the
+  'softspace' attribute of files is now gone (since print() doesn't use
+  it).  A side effect of this change is that you can get incomplete
+  output lines in interactive sessions:
+
+  >>> print(42, end="")
+  42>>> 
+
+  We may be able to fix this after the I/O library rewrite.
 
 - PEP 3102: keyword-only arguments.
 


More information about the Python-3000-checkins mailing list