# HG changeset patch # User Denis Laxalde # Date 1570735844 -7200 # Node ID 54b06bec8914b72b2cad71e59d4abea03b49703c # Parent a1801ee97840084ddfe7ae67ff4875d50470ae4a py3: use socket.makefile() instead of dropped smtplib.SSLFakeFile The latter (undocumented internal) class got removed in Python 3.3. Use socket.makefile() as suggested: https://docs.python.org/3/whatsnew/3.3.html#porting-python-code diff -r a1801ee97840 -r 54b06bec8914 mercurial/mail.py --- a/mercurial/mail.py Thu Oct 10 21:05:34 2019 +0200 +++ b/mercurial/mail.py Thu Oct 10 21:30:44 2019 +0200 @@ -61,7 +61,7 @@ ui=self._ui, serverhostname=self._host, ) - self.file = smtplib.SSLFakeFile(self.sock) + self.file = self.sock.makefile("rb") self.helo_resp = None self.ehlo_resp = None self.esmtp_features = {}