Change reference for removing 'print' as a statement. Thanks Bill Janssen for

digging up the link.
This commit is contained in:
Brett Cannon 2005-09-08 00:26:20 +00:00
parent 68db7179ae
commit 303740df18
1 changed files with 4 additions and 2 deletions

View File

@ -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
=========