[issue36976] email: AttributeError

2019-06-01 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Certain Malformed email causes email.parser to throw AttributeError ___ Python tracker __

[issue36976] email: AttributeError

2019-05-28 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue36976] email: AttributeError

2019-05-20 Thread alter-bug-tracer
alter-bug-tracer added the comment: It is actually the exact same bug. At that time we were not sure if it security related or not, so we disclosed it privately and discussed it with Mark. We were not aware that he has submitted it for us. -- ___

[issue36976] email: AttributeError

2019-05-20 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: See also issue36910 which seems to be similar report on non-ascii Content-Transfer-Encoding which is present in the reported file0 file too. -- components: +email nosy: +barry, maxking, msapiro, r.david.murray, xtreak __

[issue36976] email: AttributeError

2019-05-20 Thread alter-bug-tracer
New submission from alter-bug-tracer : The 'lower' method is called on a Header object when trying to parse the attached file. Code: import email import sys with open(sys.argv[1], "rb") as f: msg = email.message_from_binary_file(f) print (len(msg)) Traceback: msg = email.message_from