summaryrefslogtreecommitdiff
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-22 23:25:35 +0000
committerRaymond Hettinger <python@rcn.com>2008-01-22 23:25:35 +0000
commit1dfde1ddc0e1980d67bd19e187252d4e52b4f7ce (patch)
tree365fcd0e0d95e4ff612ca7184d441e6184f8b203 /Python/bltinmodule.c
parent86def6cb2b8d6d8c7f239795fa7af57c97a5890d (diff)
downloadcpython-git-1dfde1ddc0e1980d67bd19e187252d4e52b4f7ce.tar.gz
Replace map(None, *iterables) with zip(*iterables).
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 05ae915ec6..a5b97163de 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().)");