[issue12515] email modifies the message structure when the parsed email is invalid without registering defects

2012-05-27 Thread R. David Murray
R. David Murray added the comment: I didn't wind up using your patch (for one thing I forgot that there were two separate issues in this patch and independently rediscovered and fixed the MissingHeaderBodySeparatorDefect one). However, this is now fixed in 3.3. Unfortunately, since it intro

[issue12515] email modifies the message structure when the parsed email is invalid without registering defects

2012-05-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 81e008f13b4f by R David Murray in branch 'default': #12515: email now registers a defect if the MIME end boundary is missing. http://hg.python.org/cpython/rev/81e008f13b4f -- nosy: +python-dev ___ Python

[issue12515] email modifies the message structure when the parsed email is invalid without registering defects

2012-05-24 Thread R. David Murray
R. David Murray added the comment: Thanks for the patch. I haven't forgotten about it, but it will probably still be a while yet before I get to it. Hopefully before 3.3 is released, though. -- assignee: r.david.murray -> components: +email -Library (Lib) nosy: +barry title: email m

[issue12515] email modifies the message structure when the parsed email is invalid

2011-08-17 Thread xavierd
Changes by xavierd : Added file: http://bugs.python.org/file22919/orig.eml ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue12515] email modifies the message structure when the parsed email is invalid

2011-08-17 Thread xavierd
Changes by xavierd : Removed file: http://bugs.python.org/file22887/email.patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue12515] email modifies the message structure when the parsed email is invalid

2011-08-17 Thread xavierd
xavierd added the comment: I also noticed that 'email' modifies the message structure when the header/body separator is missing. And nothing is added to the defect list. In the attachment, you'll find : - email.patch: this patch add the following error to the defects list : - the error 'em

[issue12515] email modifies the message structure when the parsed email is invalid

2011-08-12 Thread xavierd
xavierd added the comment: with the patch applied: {{{ $ ./test.py PARSER INVALID EMAIL defects found ! [] }}} -- Added file: http://bugs.python.org/file22889/test.py ___ Python tracker _

[issue12515] email modifies the message structure when the parsed email is invalid

2011-08-12 Thread xavierd
Changes by xavierd : Added file: http://bugs.python.org/file22888/orig.eml ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue12515] email modifies the message structure when the parsed email is invalid

2011-08-12 Thread xavierd
xavierd added the comment: This patch does: - when a close boundary isn't found then the error 'email.errors.CloseBoundaryNotFoundDefect' is added to the defects list. - it doesn't modify the current behaviour of the feedparser (eg: the function email.message_from_file still modifies the me

[issue12515] email modifies the message structure when the parsed email is invalid

2011-07-08 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: -> r.david.murray components: +Library (Lib) -None stage: -> needs patch title: The email package modifies the message structure (when the parsed email is invalid) -> email modifies the message structure when the parsed email is invalid type: ->