add a link to PEP 3105 for print function call.

This commit is contained in:
Guido van Rossum 2006-12-19 21:20:00 +00:00
parent 36fd009b8a
commit 8041f57f01
1 changed files with 3 additions and 1 deletions

View File

@ -67,7 +67,7 @@ Core language
* ``exec`` as a statement is not worth it -- make it a function [done]
* (Maybe) add optional declarations for static typing [10]_
* Support only new-style classes; classic classes will be gone [1]_ [done]
* Replace ``print`` by a function [14]_
* Replace ``print`` by a function [14]_ [#pep3105]_
* 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]
@ -355,6 +355,8 @@ References
.. [#pep3099] PEP 3099 (Things that will Not Change in Python 3000)
http://www.python.org/dev/peps/pep-3099
.. [#pep3105] PEP 3105 (Make print a function)
http://www.python.org/dev/peps/pep-3105
Copyright