summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_email/test_defect_handling.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19590: Use specific asserts in email tests.Serhiy Storchaka2013-11-161-13/+13
|
* Refactor test_email/test_defect_handling.R David Murray2012-05-291-178/+161
|
* #12515: email now registers a defect if the MIME end boundary is missing.R David Murray2012-05-281-0/+33
| | | | | | This commit also restores the news item for 167256 that it looks like Terry inadvertently deleted. (Either that, or I don't understand now merging works...which is equally possible.)
* #1672568: email now registers defects for base64 payload format errors.R David Murray2012-05-281-0/+304
Which also means that it is now producing *something* for any base64 payload, which is what leads to the couple of older test changes in test_email. This is a slightly backward incompatible behavior change, but the new behavior is so much more useful than the old (you can now *reliably* detect errors, and any program that was detecting errors by sniffing for a base64 return from get_payload(decode=True) and then doing its own error-recovery decode will just get the error-recovery decode right away). So this seems to me to be worth the small risk inherent in this behavior change. This patch also refactors the defect tests into a separate test file, since they are no longer just parser tests.