[Python-checkins] python/nondist/peps pep-3000.txt,1.19,1.20
bcannon@users.sourceforge.net
bcannon at users.sourceforge.net
Thu Sep 8 02:26:23 CEST 2005
Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1483
Modified Files:
pep-3000.txt
Log Message:
Change reference for removing 'print' as a statement. Thanks Bill Janssen for
digging up the link.
Index: pep-3000.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-3000.txt,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- pep-3000.txt 27 Aug 2005 18:27:33 -0000 1.19
+++ pep-3000.txt 8 Sep 2005 00:26:20 -0000 1.20
@@ -49,8 +49,7 @@
* 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 @@
.. [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
=========
More information about the Python-checkins
mailing list