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