summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-08-02 07:42:57 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-08-02 07:42:57 (GMT)
commiteaef61511656071194565878dc80c46096d46415 (patch)
treeb3e761f4c79ace0c0baeeb3ed845afd14ca666bb /Misc
parent9463792c686c312dcf85c649b7183eae25403945 (diff)
downloadcpython-eaef61511656071194565878dc80c46096d46415.zip
cpython-eaef61511656071194565878dc80c46096d46415.tar.gz
cpython-eaef61511656071194565878dc80c46096d46415.tar.bz2
As discussed on python-dev, changed builtin.zip() to handle zero arguments
by returning an empty list instead of raising a TypeError.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index caf49b0..435dd64 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.4 alpha 1?
Core and builtins
-----------------
+- zip() with no arguments now returns an empty list instead of raising
+ a TypeError exception.
+
Extension modules
-----------------