[issue30532] email.policy.SMTP.fold() mangles long headers

2017-07-06 Thread R. David Murray
R. David Murray added the comment: Thanks, Joel! -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed type: -> behavior ___ Python tracker ___

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-07-06 Thread R. David Murray
R. David Murray added the comment: New changeset 3bbdf990a2c1b0b303b950058e3177a1bd5f697a by R. David Murray (Joel Hillacre) in branch '3.5': bpo-30532: Fix whitespace folding in certain cases (#2592) https://github.com/python/cpython/commit/3bbdf990a2c1b0b303b950058e3177a1bd5f697a --

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-07-06 Thread R. David Murray
R. David Murray added the comment: New changeset c60d2f5e8609b040ab58c498fde23928fe9dbef5 by R. David Murray (Joel Hillacre) in branch '3.6': bpo-30532: Fix whitespace folding in certain cases (#2591) https://github.com/python/cpython/commit/c60d2f5e8609b040ab58c498fde23928fe9dbef5 --

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-07-05 Thread Joel Hillacre
Changes by Joel Hillacre : -- pull_requests: +2663 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-07-05 Thread Joel Hillacre
Changes by Joel Hillacre : -- pull_requests: +2662 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-06-26 Thread R. David Murray
Changes by R. David Murray : -- stage: -> backport needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-06-26 Thread R. David Murray
R. David Murray added the comment: New changeset b350c22ebcbb891412e0b334afc9f0db19534e06 by R. David Murray (Joel Hillacre) in branch 'master': bpo-30532: Fix whitespace folding in certain cases https://github.com/python/cpython/commit/b350c22ebcbb891412e0b334afc9f0db19534e06 -- ___

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-06-23 Thread R. David Murray
R. David Murray added the comment: Just as well. I had no time last weekend. I should have time this Sunday, though. -- ___ Python tracker ___

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-06-21 Thread Joel Hillacre
Joel Hillacre added the comment: > Ping the issue again next week if I don't get to it this weekend. I am a week late, but here is a ping. -- ___ Python tracker ___

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-06-05 Thread R. David Murray
R. David Murray added the comment: Ping the issue again next week if I don't get to it this weekend. -- ___ Python tracker ___ ___ Pyt

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-06-05 Thread Joel Hillacre
Joel Hillacre added the comment: Rebased the github PR on latest master to get the windows build passing CI. Is there anything I need to do to keep the PR moving? -- ___ Python tracker

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-05-31 Thread Joel Hillacre
Joel Hillacre added the comment: I added a pull request that causes Chris's test to pass. I can confirm that the Chris's was not pass for me on master branch. -- nosy: +jhillacre ___ Python tracker ___

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-05-31 Thread Joel Hillacre
Changes by Joel Hillacre : -- pull_requests: +1968 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-05-31 Thread Ned Deily
Changes by Ned Deily : -- nosy: +barry, r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue30532] email.policy.SMTP.fold() mangles long headers

2017-05-31 Thread Chris Bradley
New submission from Chris Bradley: When email.policy.SMTP.fold() attempts to wrap a line in which a chunk that does not contain a space is longer than the maximum line length, two things go wrong: - The second line does not begin with a space, creating an invalid header. - The space before th