(self)
| 196 | self.tls_starting = False |
| 197 | |
| 198 | def handle_read(self): |
| 199 | if self.tls_starting: |
| 200 | self._do_tls_handshake() |
| 201 | else: |
| 202 | try: |
| 203 | asynchat.async_chat.handle_read(self) |
| 204 | except ssl.SSLEOFError: |
| 205 | self.handle_close() |
| 206 | |
| 207 | class DummyPOP3Server(asyncore.dispatcher, threading.Thread): |
| 208 |
nothing calls this directly
no test coverage detected