mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Issue #27110: Add smtpd.SMTPChannel to __all__, by Jacek Kołodziej
This commit is contained in:
parent
d04d21373f
commit
380ef01299
2 changed files with 15 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue