(self)
| 794 | self.log_info('unhandled connect event', 'warning') |
| 795 | |
| 796 | def handle_accept(self): |
| 797 | pair = self.accept() |
| 798 | if pair is not None: |
| 799 | self.handle_accepted(*pair) |
| 800 | |
| 801 | def handle_accepted(self, sock, addr): |
| 802 | sock.close() |
no test coverage detected