From 303740df1805fc73f1089311412eed009bb7ddb8 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 8 Sep 2005 00:26:20 +0000 Subject: [PATCH] Change reference for removing 'print' as a statement. Thanks Bill Janssen for digging up the link. --- pep-3000.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pep-3000.txt b/pep-3000.txt index 41deb798f..837a2e3d6 100644 --- a/pep-3000.txt +++ b/pep-3000.txt @@ -49,8 +49,7 @@ Core language * Support only new-style classes; classic classes will be gone [1]_ * Return iterators instead of lists where appropriate for atomic type methods (e.g. ``dict.keys()``, ``dict.values()``, ``dict.items()``, etc.) -* Replace ``print`` by a function: ``write(x,y,z)``, - ``writeln(x,y,z)`` [2]_ +* Replace ``print`` by a function [16]_ * Do something so you can catch multiple exceptions using ``except E1, E2, E3:``. Maybe use ``except E1, E2, E3 as err:`` if you want the error variable? [3]_ @@ -169,6 +168,9 @@ References .. [15] python-dev email (Remove str.find in 3.0?) http://mail.python.org/pipermail/python-dev/2005-August/055705.html +.. [16] python-dev email (Replacement for print in Python 3.0) + http://mail.python.org/pipermail/python-dev/2005-September/056154.html + Copyright =========