(self, conn)
| 435 | class DummyPOP3_SSLHandler(SSLConnection, DummyPOP3Handler): |
| 436 | |
| 437 | def __init__(self, conn): |
| 438 | asynchat.async_chat.__init__(self, conn) |
| 439 | self.secure_connection() |
| 440 | self.set_terminator(b"\r\n") |
| 441 | self.in_buffer = [] |
| 442 | self.push('+OK dummy pop3 server ready. <timestamp>') |
| 443 | self.tls_active = True |
| 444 | self.tls_starting = False |
| 445 | |
| 446 | |
| 447 | @requires_ssl |
nothing calls this directly
no test coverage detected