]> granicus.if.org Git - python/commit
Merged revisions 81660 via svnmerge from
authorR. David Murray <rdmurray@bitdance.com>
Thu, 3 Jun 2010 02:05:47 +0000 (02:05 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Thu, 3 Jun 2010 02:05:47 +0000 (02:05 +0000)
commitd2d08c6872a118cfd910439420c380101e18c38e
treee83ba939fa3952f397449fd1940a3eae818bf2e0
parent5e50f8b5a19e7bad02f53e9af7e25c7e3ddeee40
Merged revisions 81660 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r81660 | r.david.murray | 2010-06-02 21:58:28 -0400 (Wed, 02 Jun 2010) | 25 lines

  Fix Charset.body_encode to encode to output_charset before calling base64mime.

  This means that what gets encoded in base64 is the encoded version of the
  unicode payload.  This bug was revealed by a forward port of the tests from
  Issue 1368247, but the fix was completely different.

  Note that the merge is only of the tests, the doc changes were inappropriate
  since email5 expects unicode, not bytes.  I'm also not convinced that
  quopri works correctly in email5, but that's a different issue.

  Merged revisions 81658 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r81658 | r.david.murray | 2010-06-02 18:03:15 -0400 (Wed, 02 Jun 2010) | 9 lines

    #1368247: make set_charset/MIMEText automatically encode unicode _payload.

    Fixes (mysterious, to the end user) UnicodeErrors when using utf-8 as
    the charset and unicode as the _text argument.  Also makes the way in
    which unicode gets encoded to quoted printable for other charsets more
    sane (it only worked by accident previously).  The _payload now is encoded
    to the charset.output_charset if it is unicode.
  ........
................
Lib/email/charset.py
Lib/email/test/test_email.py
Misc/NEWS