(self, arg)
| 435 | self.push('250 OK') |
| 436 | |
| 437 | def smtp_QUIT(self, arg): |
| 438 | # args is ignored |
| 439 | self.push('221 Bye') |
| 440 | self.close_when_done() |
| 441 | |
| 442 | def _strip_command_keyword(self, keyword, arg): |
| 443 | keylen = len(keyword) |
nothing calls this directly
no test coverage detected