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 georg.brandl
Recipients docs@python, enchyisle, georg.brandl
Date 2014-11-14.07:38:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1415950707.12.0.760010790338.issue22868@psf.upfronthosting.co.za>
In-reply-to
Content
For me the text is correct.  However, it depends on parsing the English sentence in the right way, which can be confusing.  The prose means "not (divisible by 2 or 3)" which is equivalent to "not divisible by 2 and not divisible by 3", therefore the Python code has an "and" operator.

It would probably be best to remove the negation, which also removes the ambiguity: "compute a sequence of numbers divisible by 2 or 3" or such.
History
Date User Action Args
2014-11-14 07:38:27georg.brandlsetrecipients: + georg.brandl, docs@python, enchyisle
2014-11-14 07:38:27georg.brandlsetmessageid: <1415950707.12.0.760010790338.issue22868@psf.upfronthosting.co.za>
2014-11-14 07:38:27georg.brandllinkissue22868 messages
2014-11-14 07:38:26georg.brandlcreate