MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/test/support/smtpd.py:728–731  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

726
727class PureProxy(SMTPServer):
728 def __init__(self, *args, **kwargs):
729 if 'enable_SMTPUTF8' in kwargs and kwargs['enable_SMTPUTF8']:
730 raise ValueError("PureProxy does not support SMTPUTF8.")
731 super(PureProxy, self).__init__(*args, **kwargs)
732
733 def process_message(self, peer, mailfrom, rcpttos, data):
734 lines = data.split('\n')

Callers 2

__init__Method · 0.45
__init__Method · 0.45

Calls 1

superClass · 0.85

Tested by

no test coverage detected