From: Georg Brandl Date: Thu, 13 Jan 2011 07:31:18 +0000 (+0000) Subject: Fix the example output of count(). X-Git-Tag: v3.2rc1~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37a80dc7bcba6eb63ee2a18c9262f1a8e3da9e45;p=python Fix the example output of count(). --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 69e51090fd..757823d9f1 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -246,7 +246,7 @@ loops that truncate the stream. def count(start=0, step=1): # count(10) --> 10 11 12 13 14 ... - # count(2.5, 0.5) -> 3.5 3.0 4.5 ... + # count(2.5, 0.5) -> 2.5 3.0 3.5 ... n = start while True: yield n