News about softspace.

This commit is contained in:
Guido van Rossum 2007-02-09 23:52:14 +00:00
parent e0192e576f
commit 8b545369ea

View file

@ -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.