No messing around with zip().

This commit is contained in:
Georg Brandl 2006-08-31 17:34:30 +00:00
parent 10a438680a
commit 92679350fb
1 changed files with 7 additions and 0 deletions

View File

@ -140,9 +140,16 @@ Core language
Thread: "No Container Literals",
http://mail.python.org/pipermail/python-3000/2006-July/002550.html
Builtins
========
* ``zip()`` won't grow keyword arguments or other mechanisms to prevent
it from stopping at the end of the shortest sequence.
Thread: "have zip() raise exception for sequences of different lengths",
http://mail.python.org/pipermail/python-3000/2006-August/003338.html
* ``hash()`` won't become an attribute since attributes should be cheap
to compute, which isn't necessarily the case for a hash.