summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-08-08 05:10:41 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-08-08 05:10:41 (GMT)
commitb5a420883c2ed3a4fc74b212ab0454991fe90bcc (patch)
treea7238608d1225716fec2e766353651f22c467857 /Misc
parent77fe69bd082496151debfbd369864e71bbd58de2 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 34786bf..410391c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.