[issue11209] Example for itertools.count is misleading

2011-02-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: Fixed in 2.7 and 3.1. Was already fixed in 3.2. Thanks for the report. -- nosy: +rhettinger resolution: -> fixed status: open -> closed ___ Python tracker

[issue11209] Example for itertools.count is misleading

2011-02-13 Thread Alex
Alex added the comment: Patch for 2.7. -- keywords: +patch nosy: +alex Added file: http://bugs.python.org/file20758/python-11209.diff ___ Python tracker ___

[issue11209] Example for itertools.count is misleading

2011-02-13 Thread Johannes Ammon
New submission from Johannes Ammon : The example code for itertools.count (http://docs.python.org/library/itertools.html#itertools.count) says # count(2.5, 0.5) -> 3.5 3.0 4.5 ... I think that should read # count(2.5, 0.5) -> 2.5 3.0 3.5 ... -- assignee: docs@python componen