[Python-checkins] r51666 - peps/trunk/pep-3099.txt

georg.brandl python-checkins at python.org
Thu Aug 31 19:34:30 CEST 2006


Author: georg.brandl
Date: Thu Aug 31 19:34:30 2006
New Revision: 51666

Modified:
   peps/trunk/pep-3099.txt
Log:
No messing around with zip().



Modified: peps/trunk/pep-3099.txt
==============================================================================
--- peps/trunk/pep-3099.txt	(original)
+++ peps/trunk/pep-3099.txt	Thu Aug 31 19:34:30 2006
@@ -140,9 +140,16 @@
    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.
 


More information about the Python-checkins mailing list