summaryrefslogtreecommitdiff
path: root/Lib/smtpd.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-06 02:03:11 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-06-06 02:03:11 +0000
commit380ef012998e5951333e68f6130aba8aba9ee721 (patch)
treecfbf6bac92a4f027715b395832fd5be8cc81450c /Lib/smtpd.py
parentd04d21373f01ff0d4b8aabfb73ea19b2c023f4a0 (diff)
downloadcpython-git-380ef012998e5951333e68f6130aba8aba9ee721.tar.gz
Issue #27110: Add smtpd.SMTPChannel to __all__, by Jacek KoƂodziej
Diffstat (limited to 'Lib/smtpd.py')
-rwxr-xr-xLib/smtpd.py5
1 files changed, 4 insertions, 1 deletions
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'