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 r.david.murray
Recipients barry, flokli, r.david.murray
Date 2020-11-22.19:18:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1606072738.33.0.314477189685.issue42433@roundup.psfhosted.org>
In-reply-to
Content
The problem with that archive is that it is not in proper mbox format.  It contains the following line (5689):

    From here I was hoping to run something like “dbus-send –system –dest=Test.Me –print-reply /Japan Japan.Reset.Test string:”Hello””

You will note that there is no leading '>' on that line to escape that 'From '.  So mbox tries to build a 'From ' line from it, and fails because 'From ' lines should not contain any non-ascii characters.  It can be argued that that failure is sub-optimal...it should probably be calling decode('ascii', errors='replace') so that the parse doesn't fail, just like it would not fail if there were no non-ascii in the unescaped 'From ' line.
History
Date User Action Args
2020-11-22 19:18:58r.david.murraysetrecipients: + r.david.murray, barry, flokli
2020-11-22 19:18:58r.david.murraysetmessageid: <1606072738.33.0.314477189685.issue42433@roundup.psfhosted.org>
2020-11-22 19:18:58r.david.murraylinkissue42433 messages
2020-11-22 19:18:57r.david.murraycreate