From 1dfde1ddc0e1980d67bd19e187252d4e52b4f7ce Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 22 Jan 2008 23:25:35 +0000 Subject: Replace map(None, *iterables) with zip(*iterables). --- Python/bltinmodule.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python') 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().)"); -- cgit v1.2.1