Spawn a new thread to serve this connection
(self, c, name)
| 417 | return tuple(self.id_to_obj[token.id][1]) |
| 418 | |
| 419 | def accept_connection(self, c, name): |
| 420 | ''' |
| 421 | Spawn a new thread to serve this connection |
| 422 | ''' |
| 423 | threading.current_thread().name = name |
| 424 | c.send(('#RETURN', None)) |
| 425 | self.serve_client(c) |
| 426 | |
| 427 | def incref(self, c, ident): |
| 428 | with self.mutex: |
nothing calls this directly
no test coverage detected