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 belopolsky
Recipients amaury.forgeotdarc, belopolsky, calvin, georg.brandl
Date 2008-03-28.14:04:32
SpamBayes Score 0.41720662
Marked as misclassified No
Message-id <1206713073.45.0.172026474017.issue2503@psf.upfronthosting.co.za>
In-reply-to
Content
Despite the title, the patch replaces "result == False" with "not 
result" rather than "result is False".  While probably ok in this 
particular context, this changes the logic.  For example,

>>> result = ""
>>> result == False
False
>>> not result
True
History
Date User Action Args
2008-03-28 14:04:33belopolskysetspambayes_score: 0.417207 -> 0.41720662
recipients: + belopolsky, georg.brandl, calvin, amaury.forgeotdarc
2008-03-28 14:04:33belopolskysetspambayes_score: 0.417207 -> 0.417207
messageid: <1206713073.45.0.172026474017.issue2503@psf.upfronthosting.co.za>
2008-03-28 14:04:32belopolskylinkissue2503 messages
2008-03-28 14:04:32belopolskycreate