From 380ef012998e5951333e68f6130aba8aba9ee721 Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Mon, 6 Jun 2016 02:03:11 +0000 Subject: =?UTF-8?q?Issue=20#27110:=20Add=20smtpd.SMTPChannel=20to=20=5F=5F?= =?UTF-8?q?all=5F=5F,=20by=20Jacek=20Ko=C5=82odziej?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lib/smtpd.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Lib/smtpd.py') diff --git a/Lib/smtpd.py b/Lib/smtpd.py index 5f3b05eff8..8103ca9af0 100755 --- a/Lib/smtpd.py +++ b/Lib/smtpd.py @@ -89,7 +89,10 @@ import collections from warnings import warn from email._header_value_parser import get_addr_spec, get_angle_addr -__all__ = ["SMTPServer","DebuggingServer","PureProxy","MailmanProxy"] +__all__ = [ + "SMTPChannel", "SMTPServer", "DebuggingServer", "PureProxy", + "MailmanProxy", +] program = sys.argv[0] __version__ = 'Python SMTP proxy version 0.3' -- cgit v1.2.1