(cls, conn)
| 3678 | |
| 3679 | @classmethod |
| 3680 | def _echo(cls, conn): |
| 3681 | for msg in iter(conn.recv_bytes, SENTINEL): |
| 3682 | conn.send_bytes(msg) |
| 3683 | conn.close() |
| 3684 | |
| 3685 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3686 | def test_connection(self): |
nothing calls this directly
no test coverage detected