(self, arg)
| 977 | self.close_when_done() |
| 978 | |
| 979 | def smtp_MAIL(self, arg): |
| 980 | if self.mail_response is None: |
| 981 | super().smtp_MAIL(arg) |
| 982 | else: |
| 983 | self.push(self.mail_response) |
| 984 | if self.disconnect: |
| 985 | self.close_when_done() |
| 986 | |
| 987 | def smtp_RCPT(self, arg): |
| 988 | if self.rcpt_response is None: |
nothing calls this directly
no test coverage detected