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 SilentGhost
Recipients George.Dhoore, SilentGhost, eric.smith, giampaolo.rodola, pitrou
Date 2011-03-09.22:58:30
SpamBayes Score 0.00054759835
Marked as misclassified No
Message-id <1299711511.5.0.555144721735.issue11072@psf.upfronthosting.co.za>
In-reply-to
Content
facts_found.strip(" ").rstrip(";")

strip is redundant since facts_found is a first element of partitioning by the same string. rstrip is wrong since you're potentially deleting more than one character (there is no test for that).

In your test you're checking whether returned facts contain every requested fact, this is not guaranteed by RFC. Also, not sure what the last for statement is supposed to mean. Is it a typo?
History
Date User Action Args
2011-03-09 22:58:31SilentGhostsetrecipients: + SilentGhost, pitrou, eric.smith, giampaolo.rodola, George.Dhoore
2011-03-09 22:58:31SilentGhostsetmessageid: <1299711511.5.0.555144721735.issue11072@psf.upfronthosting.co.za>
2011-03-09 22:58:30SilentGhostlinkissue11072 messages
2011-03-09 22:58:30SilentGhostcreate