diff options
author | Raymond Hettinger <python@rcn.com> | 2008-03-13 02:09:15 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-03-13 02:09:15 (GMT) |
commit | 736c0ab428e69b1be67bd91969477e5227613241 (patch) | |
tree | 59193c21fa061c593f7eb264f19bcd406239a63d /Misc | |
parent | c5a2eb949c5c19ed6d4dcada55ac970b5cc6c123 (diff) | |
download | cpython-736c0ab428e69b1be67bd91969477e5227613241.zip cpython-736c0ab428e69b1be67bd91969477e5227613241.tar.gz cpython-736c0ab428e69b1be67bd91969477e5227613241.tar.bz2 |
Move itertools izip() code to builtins as zip(). Complete the renaming.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -72,7 +72,7 @@ Core and Builtins - Issue #1969: split and rsplit in bytearray are inconsistent -- map() and itertools.imap() no longer accept None for the first argument. +- map() and no longer accepts None for the first argument. Use zip() instead. - Issue #1769: Now int("- 1") is not allowed any more. @@ -123,6 +123,10 @@ Core and Builtins Extension Modules ----------------- +- Code for itertools ifilter(), imap(), and izip() moved to bultins and + renamed to filter(), map(), and zip(). Also, renamed izip_longest() + to zip_longest() and ifilterfalse() to filterfalse(). + - Issue #1762972: Readded the reload() function as imp.reload() - Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ |