From: Guido van Rossum Date: Fri, 9 Feb 2007 23:52:14 +0000 (+0000) Subject: News about softspace. X-Git-Tag: v3.0a1~1231 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b545369eac66c963633d309eac7f71eff7b4326;p=python News about softspace. --- diff --git a/Misc/NEWS b/Misc/NEWS index 8b6d0696ea..cda848bd3a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -36,7 +36,15 @@ TO DO 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.