(self, arg)
| 424 | self.push('250 OK') |
| 425 | |
| 426 | def smtp_QUIT(self, arg): |
| 427 | # args is ignored |
| 428 | self.push('221 Bye') |
| 429 | self.close_when_done() |
| 430 | |
| 431 | def _strip_command_keyword(self, keyword, arg): |
| 432 | keylen = len(keyword) |
nothing calls this directly
no test coverage detected