diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-06-11 17:48:58 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-06-11 17:48:58 (GMT) |
commit | 6fe56a329dd427f2a5363b43ad24f04785d2091d (patch) | |
tree | af2b051bbdb771ad2932d6888b9405d7984ff9b6 /Doc/whatsnew | |
parent | 1144da5821553449739744f08d041b4ba7114ecb (diff) | |
download | cpython-6fe56a329dd427f2a5363b43ad24f04785d2091d.zip cpython-6fe56a329dd427f2a5363b43ad24f04785d2091d.tar.gz cpython-6fe56a329dd427f2a5363b43ad24f04785d2091d.tar.bz2 |
#14758: add IPv6 support to smtpd.
Patch by Milan Oberkirch.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 68106c1..846a416 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -194,6 +194,10 @@ smtpd is ``True`` for backward compatibility reasons, but will change to ``False`` in Python 3.6. (Contributed by Maciej Szulik in :issue:`19662`.) +* It is now possible to provide, directly or via name resolution, IPv6 + addresses in the :class:`~smtpd.SMTPServer` constructor, and have it + successfully connect. (Contributed by Milan Oberkirch in :issue:`14758`.) + socket ------ |