From 8041f57f0106bee4b2d4022b8feb85358b51d3bd Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 19 Dec 2006 21:20:00 +0000 Subject: [PATCH] add a link to PEP 3105 for print function call. --- pep-3100.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pep-3100.txt b/pep-3100.txt index 5a25d875c..0073a0079 100644 --- a/pep-3100.txt +++ b/pep-3100.txt @@ -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