From: Zackery Spytz Date: Tue, 20 Aug 2019 17:52:25 +0000 (-0600) Subject: bpo-32793: Fix a duplicate debug message in smtplib (GH-15341) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46a7564578f208df1e0c54fc0520d3b7ca32c981;p=python bpo-32793: Fix a duplicate debug message in smtplib (GH-15341) _get_socket() already prints a debug message for the host and port. https://bugs.python.org/issue32793 Automerge-Triggered-By: @maxking --- diff --git a/Lib/smtplib.py b/Lib/smtplib.py index a634f7ae73..43a00d9a4e 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -333,8 +333,6 @@ class SMTP: raise OSError("nonnumeric port") if not port: port = self.default_port - if self.debuglevel > 0: - self._print_debug('connect:', (host, port)) sys.audit("smtplib.connect", self, host, port) self.sock = self._get_socket(host, port, self.timeout) self.file = None diff --git a/Misc/NEWS.d/next/Library/2019-08-20-05-17-32.bpo-32793.cgpXl6.rst b/Misc/NEWS.d/next/Library/2019-08-20-05-17-32.bpo-32793.cgpXl6.rst new file mode 100644 index 0000000000..f715a816ef --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-08-20-05-17-32.bpo-32793.cgpXl6.rst @@ -0,0 +1 @@ +Fix a duplicated debug message when :meth:`smtplib.SMTP.connect` is called.