(cls, conn)
| 3394 | |
| 3395 | @classmethod |
| 3396 | def _echo(cls, conn): |
| 3397 | for msg in iter(conn.recv_bytes, SENTINEL): |
| 3398 | conn.send_bytes(msg) |
| 3399 | conn.close() |
| 3400 | |
| 3401 | def test_connection(self): |
| 3402 | conn, child_conn = self.Pipe() |
nothing calls this directly
no test coverage detected