[issue37357] mbox From line wrongly detected

2019-07-09 Thread R. David Murray
R. David Murray added the comment: This problem is the whole reason "mangle_from" exists in the email library... -- ___ Python tracker ___

[issue37357] mbox From line wrongly detected

2019-06-29 Thread Eric V. Smith
Change by Eric V. Smith : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37357] mbox From line wrongly detected

2019-06-21 Thread Andrew Bernard
Andrew Bernard added the comment: Not really a bug. Results from problems with the loose mbix format and lack of standards. Nothing Python can do about it. -- ___ Python tracker

[issue37357] mbox From line wrongly detected

2019-06-21 Thread Andrew Bernard
Change by Andrew Bernard : -- resolution: -> not a bug ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37357] mbox From line wrongly detected

2019-06-21 Thread SilentGhost
Change by SilentGhost : -- nosy: +barry, maxking, r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37357] mbox From line wrongly detected

2019-06-21 Thread SilentGhost
Change by SilentGhost : -- components: +email ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37357] mbox From line wrongly detected

2019-06-21 Thread Andrew Bernard
New submission from Andrew Bernard : When parsing an mbox file, the Python mailbox library is confused by the presence of lines starting with 'From' in the body of the text. A new fragmentary message item is created, but this is wrong. The following sample code and input demonstrates this.