(cls, conn, strings)
| 4076 | |
| 4077 | @classmethod |
| 4078 | def _child_strings(cls, conn, strings): |
| 4079 | for s in strings: |
| 4080 | time.sleep(0.1) |
| 4081 | conn.send_bytes(s) |
| 4082 | conn.close() |
| 4083 | |
| 4084 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 4085 | def test_strings(self): |
nothing calls this directly
no test coverage detected