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 serhiy.storchaka
Recipients barry, r.david.murray, serhiy.storchaka, vajrasky, Łukasz.Kucharski
Date 2014-05-31.12:16:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401538584.85.0.984007959868.issue21476@psf.upfronthosting.co.za>
In-reply-to
Content
Could you please add a test with parse() raising an exception?

Yet one nitpick. Instead of

        fp = openfile('msg_02.txt', 'rb')
        self.addCleanup(fp.close)
        ...

you can write

        with openfile('msg_02.txt', 'rb') as fp:
            ...

as in other tests.
History
Date User Action Args
2014-05-31 12:16:25serhiy.storchakasetrecipients: + serhiy.storchaka, barry, r.david.murray, vajrasky, Łukasz.Kucharski
2014-05-31 12:16:24serhiy.storchakasetmessageid: <1401538584.85.0.984007959868.issue21476@psf.upfronthosting.co.za>
2014-05-31 12:16:24serhiy.storchakalinkissue21476 messages
2014-05-31 12:16:23serhiy.storchakacreate