diff options
author | Raymond Hettinger <python@rcn.com> | 2008-01-22 23:25:35 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-01-22 23:25:35 (GMT) |
commit | 1dfde1ddc0e1980d67bd19e187252d4e52b4f7ce (patch) | |
tree | 365fcd0e0d95e4ff612ca7184d441e6184f8b203 /Python | |
parent | 86def6cb2b8d6d8c7f239795fa7af57c97a5890d (diff) | |
download | cpython-1dfde1ddc0e1980d67bd19e187252d4e52b4f7ce.zip cpython-1dfde1ddc0e1980d67bd19e187252d4e52b4f7ce.tar.gz cpython-1dfde1ddc0e1980d67bd19e187252d4e52b4f7ce.tar.bz2 |
Replace map(None, *iterables) with zip(*iterables).
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bltinmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 05ae915..a5b9716 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -815,7 +815,6 @@ Return an iterator yielding the results of applying the function to the\n\ items of the argument iterables(s). If more than one iterable is given,\n\ the function is called with an argument list consisting of the\n\ corresponding item of each iterable, until an iterable is exhausted.\n\ -If the function is None, 'lambda *a: a' is assumed.\n\ (This is identical to itertools.imap().)"); |