From: Raymond Hettinger Date: Wed, 1 Feb 2012 16:55:21 +0000 (-0800) Subject: Use xrange in the example X-Git-Tag: v2.7.3rc1~109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ab9813605213dafaea23e2907d25467b6a52178;p=thirdparty%2FPython%2Fcpython.git Use xrange in the example --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 9b3f1c122067..a553d09964e3 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -593,7 +593,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))) + >>> list(imap(pow, xrange(10), repeat(2))) [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] .. function:: starmap(function, iterable)