diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-05-16 19:05:53 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-05-16 19:05:53 (GMT) |
commit | b8cd3e4e30d3219ecf00ce7f114a15746561ea87 (patch) | |
tree | 062ec0ea886b1015e47f932d4676ee2dced7c85d /Doc/whatsnew | |
parent | 8eb1f077c2be03f72ef31ddd2cfe805ffbfbd524 (diff) | |
download | cpython-b8cd3e4e30d3219ecf00ce7f114a15746561ea87.zip cpython-b8cd3e4e30d3219ecf00ce7f114a15746561ea87.tar.gz cpython-b8cd3e4e30d3219ecf00ce7f114a15746561ea87.tar.bz2 |
#21804: Add RFC 6856 (UTF8) support to poplib.
Patch by Milan Oberkirch.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 86173a0..6411667 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -452,6 +452,13 @@ pickle classes) now are supported with pickle protocols < 4. (Contributed by Serhiy Storchaka in :issue:`23611`.) +poplib +------ + +* A new command :meth:`~poplib.POP3.utf8` enables :rfc:`6856` + (internationalized email) support if the POP server supports it. (Contributed + by Milan OberKirch in :issue:`21804`.) + re -- |