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 Pedro Lacerda
Recipients Pedro Lacerda, barry, frispete, r.david.murray
Date 2016-06-16.06:52:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1466059978.54.0.364108003263.issue27258@psf.upfronthosting.co.za>
In-reply-to
Content
I was unable to reproduce this bug using the following snippet

    import email, sys
    from email.generator import BytesGenerator
    from email.mime.text import MIMEText

    fp = open('flatten-exception.mail', 'rb')
    email.message_from_binary_file(fp)
    bs = BytesGenerator(sys.stdout.buffer)
    bs.flatten(MIMEText('msg', 'plain', 'utf-8'))
History
Date User Action Args
2016-06-16 06:52:58Pedro Lacerdasetrecipients: + Pedro Lacerda, barry, frispete, r.david.murray
2016-06-16 06:52:58Pedro Lacerdasetmessageid: <1466059978.54.0.364108003263.issue27258@psf.upfronthosting.co.za>
2016-06-16 06:52:58Pedro Lacerdalinkissue27258 messages
2016-06-16 06:52:58Pedro Lacerdacreate