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

Method smtp_RSET

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

Source from the content-addressed store, hash-verified

592 self.push('250 OK')
593
594 def smtp_RSET(self, arg):
595 if arg:
596 self.push('501 Syntax: RSET')
597 return
598 self._set_rset_state()
599 self.push('250 OK')
600
601 def smtp_DATA(self, arg):
602 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