From: Raymond Hettinger Date: Wed, 1 Feb 2012 16:54:14 +0000 (-0800) Subject: fix whitespace X-Git-Tag: v2.7.3rc1~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f55b630601646c7eaab6399eb12e8d61db37dd0;p=python fix whitespace --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 21465e5721..9b3f1c1220 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -592,7 +592,7 @@ loops that truncate the stream. A common use for *repeat* is to supply a stream of constant values to *imap* or *zip*:: - + >>> list(imap(pow, range(10), repeat(2))) [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]