MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

727
728class PureProxy(SMTPServer):
729 def __init__(self, *args, **kwargs):
730 if 'enable_SMTPUTF8' in kwargs and kwargs['enable_SMTPUTF8']:
731 raise ValueError("PureProxy does not support SMTPUTF8.")
732 super(PureProxy, self).__init__(*args, **kwargs)
733
734 def process_message(self, peer, mailfrom, rcpttos, data):
735 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