diff options
author | Raymond Hettinger <python@rcn.com> | 2008-01-17 03:02:14 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-01-17 03:02:14 (GMT) |
commit | 473170908e11e347aca4adf23738a82162b981e3 (patch) | |
tree | 2fa25a5ccd4abfc71e6a0f5193838a726ce4c68a /Misc | |
parent | 3ad2acc8575e1977cece844b17c572550503a615 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |