[1.8.x] Refs #23763 -- Fixed SMTPServer Python 3.5 deprecation warning in mail test.

Backport of 7d97c5745e from master
This commit is contained in:
Tim Graham 2015-05-18 09:23:06 -04:00
parent 2a36a9bb15
commit 95b1ae76ba
1 changed files with 3 additions and 0 deletions

View File

@ -843,6 +843,9 @@ class FakeSMTPServer(smtpd.SMTPServer, threading.Thread):
def __init__(self, *args, **kwargs):
threading.Thread.__init__(self)
# New kwarg added in Python 3.5; default switching to False in 3.6.
if sys.version_info >= (3, 5):
kwargs['decode_data'] = True
smtpd.SMTPServer.__init__(self, *args, **kwargs)
self._sink = []
self.active = False