(self)
| 492 | self.log_info('unhandled connect event', 'warning') |
| 493 | |
| 494 | def handle_accept(self): |
| 495 | pair = self.accept() |
| 496 | if pair is not None: |
| 497 | self.handle_accepted(*pair) |
| 498 | |
| 499 | def handle_accepted(self, sock, addr): |
| 500 | sock.close() |
no test coverage detected