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

Method smtp_RSET

Lib/test/support/smtpd.py:593–598  ·  view source on GitHub ↗
(self, arg)

Source from the content-addressed store, hash-verified

591 self.push('250 OK')
592
593 def smtp_RSET(self, arg):
594 if arg:
595 self.push('501 Syntax: RSET')
596 return
597 self._set_rset_state()
598 self.push('250 OK')
599
600 def smtp_DATA(self, arg):
601 if not self.seen_greeting:

Callers

nothing calls this directly

Calls 2

pushMethod · 0.95
_set_rset_stateMethod · 0.95

Tested by

no test coverage detected