This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nicobao
Recipients docs@python, nicobao
Date 2020-05-17.19:16:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589742987.46.0.19794536776.issue40664@roundup.psfhosted.org>
In-reply-to
Content
On this page:
https://docs.python.org/3/howto/functional.html
The example:

"itertools.dropwhile(is_even, itertools.count()) =>
  1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ..."

is wrong. It should be:

"itertools.dropwhile(is_even, itertools.count()) =>
  1, 3, 5, 7, 9, ..."
History
Date User Action Args
2020-05-17 19:16:27nicobaosetrecipients: + nicobao, docs@python
2020-05-17 19:16:27nicobaosetmessageid: <1589742987.46.0.19794536776.issue40664@roundup.psfhosted.org>
2020-05-17 19:16:27nicobaolinkissue40664 messages
2020-05-17 19:16:27nicobaocreate