(self, msg)
| 312 | |
| 313 | # Overrides base class for convenience. |
| 314 | def push(self, msg): |
| 315 | asynchat.async_chat.push(self, bytes( |
| 316 | msg + '\r\n', 'utf-8' if self.require_SMTPUTF8 else 'ascii')) |
| 317 | |
| 318 | # Implementation of base class abstract method |
| 319 | def collect_incoming_data(self, data): |
no outgoing calls
no test coverage detected