diff options
author | Raymond Hettinger <python@rcn.com> | 2003-08-08 05:10:41 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-08-08 05:10:41 (GMT) |
commit | b5a420883c2ed3a4fc74b212ab0454991fe90bcc (patch) | |
tree | a7238608d1225716fec2e766353651f22c467857 /Misc | |
parent | 77fe69bd082496151debfbd369864e71bbd58de2 (diff) | |
download | cpython-b5a420883c2ed3a4fc74b212ab0454991fe90bcc.zip cpython-b5a420883c2ed3a4fc74b212ab0454991fe90bcc.tar.gz cpython-b5a420883c2ed3a4fc74b212ab0454991fe90bcc.tar.bz2 |
Modified itertools.izip() to match the behavior of __builtin__.zip()
which can now take zero arguments.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -23,6 +23,9 @@ Extension modules Library ------- +- itertools.izip() with no arguments now returns an empty iterator instead + of raising a TypeError exception. + - _strptime.py now has a behind-the-scenes caching mechanism for the most recent TimeRE instance used along with the last five unique directive patterns. The overall module was also made more thread-safe. |