[issue27321] Email parser creates a message object that can't be flattened

2020-10-19 Thread miss-islington
miss-islington added the comment: New changeset 72ce82abcf9051b18a05350936de7ecab7306662 by Miss Skeleton (bot) in branch '3.9': bpo-27321 Fix email.generator.py to not replace a non-existent header. (GH-18074)

[issue27321] Email parser creates a message object that can't be flattened

2020-10-19 Thread miss-islington
miss-islington added the comment: New changeset 371146a3f8a989964e2a9c0efc7d776815410fac by Miss Skeleton (bot) in branch '3.8': bpo-27321 Fix email.generator.py to not replace a non-existent header. (GH-18074)

[issue27321] Email parser creates a message object that can't be flattened

2020-10-19 Thread Barry A. Warsaw
Change by Barry A. Warsaw : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.9 -Python 3.7 ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2020-10-19 Thread miss-islington
miss-islington added the comment: New changeset bf838227c35212709dc43b3c3c57f8e1655c1d24 by Mark Sapiro in branch 'master': bpo-27321 Fix email.generator.py to not replace a non-existent header. (GH-18074) https://github.com/python/cpython/commit/bf838227c35212709dc43b3c3c57f8e1655c1d24

[issue27321] Email parser creates a message object that can't be flattened

2020-10-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +21753 pull_request: https://github.com/python/cpython/pull/22797 ___ Python tracker ___

[issue27321] Email parser creates a message object that can't be flattened

2020-10-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +21752 pull_request: https://github.com/python/cpython/pull/22796 ___ Python tracker ___

[issue27321] Email parser creates a message object that can't be flattened

2020-10-05 Thread Mark Sapiro
Mark Sapiro added the comment: I work around it with ``` class Message(email.message.Message): def as_string(self): # Work around for https://bugs.python.org/issue27321 and # https://bugs.python.org/issue32330. try: value =

[issue27321] Email parser creates a message object that can't be flattened

2020-10-05 Thread Mark Diekhans
Mark Diekhans added the comment: any chance of getting this merged? A work-around is not obvious -- nosy: +diekhans ___ Python tracker ___

[issue27321] Email parser creates a message object that can't be flattened

2020-01-19 Thread Mark Sapiro
Change by Mark Sapiro : -- pull_requests: +17467 pull_request: https://github.com/python/cpython/pull/18074 ___ Python tracker ___

[issue27321] Email parser creates a message object that can't be flattened

2019-03-01 Thread Cheryl Sabella
Cheryl Sabella added the comment: @r.david.murray, it appears that all your requested changes have been addressed on the PR. Please re-review this when you get a chance. Thanks! -- nosy: +cheryl.sabella versions: -Python 3.6 ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2018-11-03 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- versions: +Python 3.8 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27321] Email parser creates a message object that can't be flattened

2018-10-05 Thread David Cannings
David Cannings added the comment: Ping on an ETA for this fix? -- nosy: +edeca ___ Python tracker ___ ___ Python-bugs-list mailing

[issue27321] Email parser creates a message object that can't be flattened

2018-01-30 Thread R. David Murray
R. David Murray added the comment: Requested a small additional change to the new tests, and then this will be ready to go in. -- ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2018-01-23 Thread R. David Murray
R. David Murray added the comment: Note: I reviewed this a while ago but the review comments haven't been addressed. -- ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2017-06-18 Thread Johannes Löthberg
Johannes Löthberg added the comment: Ping? -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27321] Email parser creates a message object that can't be flattened

2017-06-08 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: ok, I have tested on 3.6 and 3.5, just with the test. and in this case, we get the errors on both. if we apply the patch of Johannes, the test passes and there is no issues. +1 the backports for 3.5 and 3.6 is just a git cherry-picking. --

[issue27321] Email parser creates a message object that can't be flattened

2017-06-08 Thread R. David Murray
R. David Murray added the comment: I'm going to try to review this this weekend. -- ___ Python tracker ___

[issue27321] Email parser creates a message object that can't be flattened

2017-06-08 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- stage: needs patch -> patch review ___ Python tracker ___

[issue27321] Email parser creates a message object that can't be flattened

2017-06-08 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: maybe we could merge the PR, and I could propose a backport for 3.5 and 3.6. 2.7 is affected ? -- nosy: +matrixise ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2017-06-06 Thread Johannes Löthberg
Changes by Johannes Löthberg : -- pull_requests: +2043 ___ Python tracker ___ ___

[issue27321] Email parser creates a message object that can't be flattened

2017-06-03 Thread Johannes Löthberg
Johannes Löthberg added the comment: Ah, didn't even see your comment before I did it! Fix to the comments are on the same branch, will be rebased before PR is up. -- ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2017-06-03 Thread Mark Sapiro
Mark Sapiro added the comment: It looks like Johannes beat me to it. Thanks for that, but see my comments in the diff at https://github.com/kyrias/cpython/commit/a986a8274a522c73d87360da6930e632a3eb4ebb -- ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2017-06-03 Thread Johannes Löthberg
Johannes Löthberg added the comment: Fix: https://github.com/kyrias/cpython/commit/a986a8274a522c73d87360da6930e632a3eb4ebb Testcase: https://github.com/kyrias/cpython/commit/9a510426522e1d714cd0ea238b14de0fc76862b2 Can start a PR once my CLA signature goes through I guess. --

[issue27321] Email parser creates a message object that can't be flattened

2017-06-03 Thread Mark Sapiro
Mark Sapiro added the comment: I considered look before you leap, but I decided since we're munging the headers anyway, preserving their order is not that critical, but the patch is easy enough. I'll work on that and a test. -- ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2017-06-03 Thread R. David Murray
Changes by R. David Murray : -- stage: -> needs patch type: -> behavior versions: +Python 3.6, Python 3.7 -Python 3.4 ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2017-06-03 Thread R. David Murray
R. David Murray added the comment: replace_header has a different semantic than del-and-set (replace_header leaves the header in the same location in the list, rather than appending it to the end...that's it's purpose). If replace_header is throwing a key error, then I guess we need a

[issue27321] Email parser creates a message object that can't be flattened

2017-06-03 Thread Johannes Löthberg
Johannes Löthberg added the comment: Any updates on this? I'm having the same problem with some non-spam emails while trying to use some mail-handling tools written in Python. -- nosy: +Johannes Löthberg ___ Python tracker

[issue27321] Email parser creates a message object that can't be flattened

2016-10-21 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: While I was reviewing https://gitlab.com/mailman/mailman/merge_requests/197/diffs I noticed the KeyError and it made me thing "hmm, I wonder if this should be turned into one of the email package errors"? -- ___

[issue27321] Email parser creates a message object that can't be flattened

2016-06-14 Thread Mark Sapiro
Mark Sapiro added the comment: One additional observation. The original message contained no Content-Transfer-Encoding header even though the message body was raw koi8-r characters. Adding Content-Transfer-Encoding: 8bit to the message headers avoids the issue, but that is not a practical

[issue27321] Email parser creates a message object that can't be flattened

2016-06-14 Thread Maciej Szulik
Changes by Maciej Szulik : -- nosy: +maciej.szulik ___ Python tracker ___ ___

[issue27321] Email parser creates a message object that can't be flattened

2016-06-14 Thread Mark Sapiro
New submission from Mark Sapiro: The attached file, bad_email, can be parsed via msg = email.message_from_binary_file(open('bad_email', 'rb')) but then msg.as_string() prodices the following: Traceback (most recent call last): File "", line 1, in File