Mark print() as done, period. Note that softspace is gone too.

This commit is contained in:
Guido van Rossum 2007-02-09 23:52:38 +00:00
parent 0a3078f1cc
commit 2b59677334
1 changed files with 2 additions and 1 deletions

View File

@ -67,7 +67,8 @@ Core language
* ``exec`` as a statement is not worth it -- make it a function [done]
* (Maybe) add optional declarations for static typing [#pep3107]_ [10]_
* Support only new-style classes; classic classes will be gone [1]_ [done]
* Replace ``print`` by a function [14]_ [#pep3105]_ [mostly done]
* Replace ``print`` by a function [14]_ [#pep3105]_ [done]
* The ``softspace`` attribute of files goes away. [done]
* Use ``except E1, E2, E3 as err:`` if you want the error variable. [3]_
* ``None`` becomes a keyword [4]_ (What about ``True``, ``False``?)
* ``...`` to become a general expression element [16]_ [done]