(self)
| 4068 | ALLOWED_TYPES = ('processes', 'threads') |
| 4069 | |
| 4070 | def test_empty_string(self): |
| 4071 | a, b = self.Pipe() |
| 4072 | self.assertEqual(a.poll(), False) |
| 4073 | b.send_bytes(b'') |
| 4074 | self.assertEqual(a.poll(), True) |
| 4075 | self.assertEqual(a.poll(), True) |
| 4076 | |
| 4077 | @classmethod |
| 4078 | def _child_strings(cls, conn, strings): |
nothing calls this directly
no test coverage detected