(listen_sock, stop_key)
| 398 | |
| 399 | |
| 400 | def _tracker_server(listen_sock, stop_key): |
| 401 | asyncio.set_event_loop(asyncio.new_event_loop()) |
| 402 | handler = TrackerServerHandler(listen_sock, stop_key) |
| 403 | handler.run() |
| 404 | |
| 405 | |
| 406 | class PopenTrackerServerState: |
nothing calls this directly
no test coverage detected
searching dependent graphs…