diff options
author | Raymond Hettinger <python@rcn.com> | 2003-08-02 07:42:57 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-08-02 07:42:57 (GMT) |
commit | eaef61511656071194565878dc80c46096d46415 (patch) | |
tree | b3e761f4c79ace0c0baeeb3ed845afd14ca666bb /Misc | |
parent | 9463792c686c312dcf85c649b7183eae25403945 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 ----------------- |