Modified itertools.izip() to match the behavior of __builtin__.zip()

which can now take zero arguments.
This commit is contained in:
Raymond Hettinger 2003-08-08 05:10:41 +00:00
parent 77fe69bd08
commit b5a420883c
4 changed files with 15 additions and 8 deletions

View file

@ -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.