From 92679350fbce2d461d3253a76854cb73fb16000a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 31 Aug 2006 17:34:30 +0000 Subject: [PATCH] No messing around with zip(). --- pep-3099.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pep-3099.txt b/pep-3099.txt index b2011fb16..79ac51fc1 100644 --- a/pep-3099.txt +++ b/pep-3099.txt @@ -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.