[issue1525919] email package quoted printable behaviour changed

2013-03-19 Thread R. David Murray
R. David Murray added the comment: I've committed the doc change. I'm going to be lazy and leave this issue open to deal with the encodings module fix. -- ___ Python tracker

[issue1525919] email package quoted printable behaviour changed

2013-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset ba500b179c3a by R David Murray in branch '3.2': #1525919: Document MIMEText+set_payload encoding behavior. http://hg.python.org/cpython/rev/ba500b179c3a New changeset fcbc28ef96a3 by R David Murray in branch '3.3': Merge: #1525919: Document MIMEText

[issue1525919] email package quoted printable behaviour changed

2013-03-19 Thread R. David Murray
R. David Murray added the comment: Reviewing this again, it seems to me that there are two separate issues reported here: (1) set_payload on an existing MIMEText object no longer encodes (but it has now been a long time since it changed). (2) the functions in the encodings module, given an alr

[issue1525919] email package quoted printable behaviour changed

2013-03-19 Thread Colin Su
Changes by Colin Su : -- assignee: -> docs@python components: +Documentation -Library (Lib), email nosy: +docs@python ___ Python tracker ___ __

[issue1525919] email package quoted printable behaviour changed

2013-03-19 Thread Colin Su
Colin Su added the comment: Confirmed with David, we work on this together on sprints. This is not a bug, if you do "set_payload" directly by yourself, you need to encode the payload by yourself because set_payload() doesn't encode payload if 'Content-Transfer-Encoding' did exist. --

[issue1525919] email package quoted printable behaviour changed

2013-03-19 Thread Colin Su
Changes by Colin Su : -- versions: +Python 2.7, Python 3.2, Python 3.3, Python 3.4 -Python 2.4 ___ Python tracker ___ ___ Python-bug

[issue1525919] email package quoted printable behaviour changed

2012-05-15 Thread R. David Murray
Changes by R. David Murray : -- assignee: r.david.murray -> components: +email ___ Python tracker ___ ___ Python-bugs-list mailing

[issue1525919] email package quoted printable behaviour changed

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue1525919] email package quoted printable behaviour changed

2010-05-05 Thread Thomas Arendsen Hein
Thomas Arendsen Hein added the comment: Roger Demetrescu, I filed the issue with "Python 2.4", because the behavior changed somewhere between 2.4.2 and 2.4.3 The updated link to the MoinMoin bug entry is: http://moinmo.in/MoinMoinBugs/ResetPasswordEmailImproperlyEncoded The workaround I use t

[issue1525919] email package quoted printable behaviour changed

2010-05-05 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- assignee: barry -> r.david.murray nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list

[issue1525919] email package quoted printable behaviour changed

2008-09-27 Thread Asheesh Laroia
Asheesh Laroia <[EMAIL PROTECTED]> added the comment: Another way to see this issue is that the email module double-encodes when one attempts to use quoted-printable encoding. This has to be worked around by e.g. MoinMoin. It's easy to get proper base64-encoded output of email.mime.text:

[issue1525919] email package quoted printable behaviour changed

2007-12-06 Thread Roger Demetrescu
Roger Demetrescu added the comment: I am not sure if it is related, but anyway... MIMEText behaviour has changed from python 2.4 to 2.5. # Python 2.4 >>> from email.MIMEText import MIMEText >>> m = MIMEText(None, 'html', 'iso-8859-1') >>> m.set_payload('abc ' * 50) >>> print m >From nobody Th