(self)
| 97 | return TLSHandshake.writable(self) |
| 98 | |
| 99 | def handle_write(self): |
| 100 | if self.tlsDone: |
| 101 | HTTPRequestHandler.handle_write(self) |
| 102 | else: |
| 103 | TLSHandshake.handle_write(self) |
| 104 | |
| 105 | |
| 106 | class HTTPServer(asyncore.dispatcher): |
nothing calls this directly
no test coverage detected