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