Change reference for removing 'print' as a statement. Thanks Bill Janssen for
digging up the link.
This commit is contained in:
parent
68db7179ae
commit
303740df18
|
@ -49,8 +49,7 @@ Core language
|
||||||
* Support only new-style classes; classic classes will be gone [1]_
|
* Support only new-style classes; classic classes will be gone [1]_
|
||||||
* Return iterators instead of lists where appropriate for atomic type methods
|
* Return iterators instead of lists where appropriate for atomic type methods
|
||||||
(e.g. ``dict.keys()``, ``dict.values()``, ``dict.items()``, etc.)
|
(e.g. ``dict.keys()``, ``dict.values()``, ``dict.items()``, etc.)
|
||||||
* Replace ``print`` by a function: ``write(x,y,z)``,
|
* Replace ``print`` by a function [16]_
|
||||||
``writeln(x,y,z)`` [2]_
|
|
||||||
* Do something so you can catch multiple exceptions using ``except E1,
|
* 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
|
E2, E3:``. Maybe use ``except E1, E2, E3 as err:`` if you want the
|
||||||
error variable? [3]_
|
error variable? [3]_
|
||||||
|
@ -169,6 +168,9 @@ References
|
||||||
.. [15] python-dev email (Remove str.find in 3.0?)
|
.. [15] python-dev email (Remove str.find in 3.0?)
|
||||||
http://mail.python.org/pipermail/python-dev/2005-August/055705.html
|
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
|
Copyright
|
||||||
=========
|
=========
|
||||||
|
|
Loading…
Reference in New Issue