(sock)
| 1263 | |
| 1264 | def run(meth): |
| 1265 | def wrapper(sock): |
| 1266 | try: |
| 1267 | meth(sock) |
| 1268 | except Exception as ex: |
| 1269 | self.loop.call_soon_threadsafe(future.set_exception, ex) |
| 1270 | else: |
| 1271 | self.loop.call_soon_threadsafe(future.set_result, None) |
| 1272 | return wrapper |
| 1273 | |
| 1274 | async def client(addr): |
nothing calls this directly
no test coverage detected