(self, conn)
| 427 | class DummyPOP3_SSLHandler(SSLConnection, DummyPOP3Handler): |
| 428 | |
| 429 | def __init__(self, conn): |
| 430 | asynchat.async_chat.__init__(self, conn) |
| 431 | self.secure_connection() |
| 432 | self.set_terminator(b"\r\n") |
| 433 | self.in_buffer = [] |
| 434 | self.push('+OK dummy pop3 server ready. <timestamp>') |
| 435 | self.tls_active = True |
| 436 | self.tls_starting = False |
| 437 | |
| 438 | |
| 439 | @requires_ssl |
nothing calls this directly
no test coverage detected