diff options
author | Guido van Rossum <guido@python.org> | 2007-02-09 23:52:14 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-02-09 23:52:14 (GMT) |
commit | 8b545369eac66c963633d309eac7f71eff7b4326 (patch) | |
tree | be69f391f8a48f3b677b179b6eea91b915fcc335 /Misc | |
parent | e0192e576f883bc495f2b731325173fd9d945d46 (diff) | |
download | cpython-8b545369eac66c963633d309eac7f71eff7b4326.zip cpython-8b545369eac66c963633d309eac7f71eff7b4326.tar.gz cpython-8b545369eac66c963633d309eac7f71eff7b4326.tar.bz2 |
News about softspace.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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. |