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 zvyn
Recipients barry, r.david.murray, zvyn
Date 2014-05-04.13:34:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1399210450.89.0.0298298862351.issue21426@psf.upfronthosting.co.za>
In-reply-to
Content
I found non-printable characters in the source files of the email package. Vim rendered it as '^L', pasting it on the linux console has the same effect as CTRL+L. In most places it was combined with regular newlines, sometimes as a replacement, sometimes additionally to them.
My guess is that these files were saved with an editor replacing '\n' with '\r' and additional '\n' were inserted afterwards since the linebreaks seemed to be gone.

I replaced these chars by '\n' or '' in the attached patch.
History
Date User Action Args
2014-05-04 13:34:12zvynsetrecipients: + zvyn, barry, r.david.murray
2014-05-04 13:34:10zvynsetmessageid: <1399210450.89.0.0298298862351.issue21426@psf.upfronthosting.co.za>
2014-05-04 13:34:10zvynlinkissue21426 messages
2014-05-04 13:34:10zvyncreate