(self, conn)
| 54 | enable_UTF8 = False |
| 55 | |
| 56 | def __init__(self, conn): |
| 57 | asynchat.async_chat.__init__(self, conn) |
| 58 | self.set_terminator(b"\r\n") |
| 59 | self.in_buffer = [] |
| 60 | self.push('+OK dummy pop3 server ready. <timestamp>') |
| 61 | self.tls_active = False |
| 62 | self.tls_starting = False |
| 63 | |
| 64 | def collect_incoming_data(self, data): |
| 65 | self.in_buffer.append(data) |
nothing calls this directly
no test coverage detected