diff options
author | R David Murray <rdmurray@bitdance.com> | 2016-09-08 21:57:06 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2016-09-08 21:57:06 (GMT) |
commit | 301edfa579036baf35c1aa4ab5ea50bcd51c0fe0 (patch) | |
tree | b5df0f6b6c5e58020fbda4c60bbcd4bdb1c8bf65 /Doc/whatsnew/3.6.rst | |
parent | 4c483ad52b6f7760a0a861badae6c803d6ce8590 (diff) | |
download | cpython-301edfa579036baf35c1aa4ab5ea50bcd51c0fe0.zip cpython-301edfa579036baf35c1aa4ab5ea50bcd51c0fe0.tar.gz cpython-301edfa579036baf35c1aa4ab5ea50bcd51c0fe0.tar.bz2 |
Add policy keyword to email.generator.DecodedGenerator.
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index fa3886c..23b8a32 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -531,6 +531,9 @@ the legacy API. (Contributed by R. David Murray in :issue:`24277`.) The :mod:`email.mime` classes now all accept an optional *policy* keyword. (Contributed by Berker Peksag in :issue:`27331`.) +The :class:`~email.generator.DecodedGenerator` now supports the *policy* +keyword. + encodings --------- @@ -538,6 +541,7 @@ encodings On Windows, added the ``'oem'`` encoding to use ``CP_OEMCP`` and the ``'ansi'`` alias for the existing ``'mbcs'`` encoding, which uses the ``CP_ACP`` code page. + faulthandler ------------ |