summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-17 03:02:14 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-01-17 03:02:14 (GMT)
commit473170908e11e347aca4adf23738a82162b981e3 (patch)
tree2fa25a5ccd4abfc71e6a0f5193838a726ce4c68a /Misc
parent3ad2acc8575e1977cece844b17c572550503a615 (diff)
downloadcpython-473170908e11e347aca4adf23738a82162b981e3.zip
cpython-473170908e11e347aca4adf23738a82162b981e3.tar.gz
cpython-473170908e11e347aca4adf23738a82162b981e3.tar.bz2
Make starmap() match its pure python definition and accept any itertable input (not just tuples).
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 9ec0f6a..0085416 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -993,6 +993,9 @@ Extension Modules
the context manager protocol. The _winreg module also gained a new function
``ExpandEnvironmentStrings`` to expand REG_EXPAND_SZ keys.
+- itertools.starmap() now accepts any iterable input. Previously, it required
+ the function inputs to be tuples.
+
- Issue #1646: Make socket support TIPC. The socket module now has support
for TIPC under Linux, see http://tipc.sf.net/ for more information.