(self)
| 11 | self._client = client |
| 12 | |
| 13 | def run(self): |
| 14 | while running: |
| 15 | data = self._client.recv(1024) |
| 16 | print(data.decode('utf-8')) |
| 17 | |
| 18 | nickname = input('请输入你的昵称: ') |
| 19 | myclient = socket() |
nothing calls this directly
no outgoing calls
no test coverage detected