(self, msg)
| 300 | |
| 301 | # Overrides base class for convenience. |
| 302 | def push(self, msg): |
| 303 | asynchat.async_chat.push(self, bytes( |
| 304 | msg + '\r\n', 'utf-8' if self.require_SMTPUTF8 else 'ascii')) |
| 305 | |
| 306 | # Implementation of base class abstract method |
| 307 | def collect_incoming_data(self, data): |
no outgoing calls