summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2012-02-01 16:54:14 (GMT)
committerRaymond Hettinger <python@rcn.com>2012-02-01 16:54:14 (GMT)
commit9f55b630601646c7eaab6399eb12e8d61db37dd0 (patch)
treeb76154c9cbcd15176a1703cdea8d00ec50275689
parentbdb7fe4c843c0290acfd8e4b194a90870ad9f733 (diff)
downloadcpython-9f55b630601646c7eaab6399eb12e8d61db37dd0.zip
cpython-9f55b630601646c7eaab6399eb12e8d61db37dd0.tar.gz
cpython-9f55b630601646c7eaab6399eb12e8d61db37dd0.tar.bz2
fix whitespace
-rw-r--r--Doc/library/itertools.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 21465e5..9b3f1c1 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]