diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-11 21:20:20 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-11 21:20:20 (GMT) |
commit | cf8a382c942ab84f93a95d85758ca2e438346399 (patch) | |
tree | 2bae2a83c8a457ad12b5b3c400cc98c0366da5ac /Doc | |
parent | 9767365318f3f64b1b1e887dbdd7fe9abf85b6e3 (diff) | |
download | cpython-cf8a382c942ab84f93a95d85758ca2e438346399.zip cpython-cf8a382c942ab84f93a95d85758ca2e438346399.tar.gz cpython-cf8a382c942ab84f93a95d85758ca2e438346399.tar.bz2 |
Update the email section
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 00ca132..543df9c 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -618,7 +618,8 @@ format. convert message bodies that have a :mailheader:`Content-Transfer-Encoding` of *8bit* to instead have a *7bit* :mailheader:`Content-Transfer-Encoding`. -.. XXX: Headers with Un-encoded non-ASCII bytes will be :rfc:`2047`\ -encoded using the charset `unknown-8bit`. + Headers with unencoded non-ASCII bytes are deemed to be :rfc:`2047`\ -encoded + using the *unknown-8bit* character set. * A new class :class:`~email.generator.BytesGenerator` produces bytes as output, preserving any unchanged non-ASCII data that was present in the input used to @@ -631,8 +632,6 @@ format. :class:`~email.message.Message` object and can optionally obtain the *from_addr* and *to_addrs* addresses directly from the object. -.. XXX Update before 3.2rc1 to reflect all of the latest work and add examples. - (Proposed and implemented by R. David Murray, :issue:`4661` and :issue:`10321`.) elementtree |