[issue18431] Encoded words in structured headers are not decoded by the new parser.

2013-07-12 Thread R. David Murray
R. David Murray added the comment: Fixed. Thanks for the report, Tim. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___

[issue18431] Encoded words in structured headers are not decoded by the new parser.

2013-07-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1f3c57ac07ed by R David Murray in branch '3.3': #18431: Decode encoded words in atoms in new email parser. http://hg.python.org/cpython/rev/1f3c57ac07ed New changeset 0c161b360ffe by R David Murray in branch 'default': Merge: #18431: Decode encoded

[issue18431] Encoded words in structured headers are not decoded by the new parser.

2013-07-11 Thread R. David Murray
New submission from R. David Murray: The subject says it all, but here is an example (from issue 18044): >>> msg = message_from_string('To: =?utf-8?q?Eric?= \n\n', policy=default) >>> msg['To'] '=?utf-8?q?Eric?= ' -- components: email messages: 192897 nosy: Tim.Rawlinson, barr