(self)
| 4107 | |
| 4108 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 4109 | def test_boundaries(self): |
| 4110 | r, w = self.Pipe(False) |
| 4111 | p = self.Process(target=self._child_boundaries, args=(r,)) |
| 4112 | p.start() |
| 4113 | time.sleep(2) |
| 4114 | L = [b"first", b"second"] |
| 4115 | for obj in L: |
| 4116 | w.send_bytes(obj) |
| 4117 | w.close() |
| 4118 | p.join() |
| 4119 | self.assertIn(r.recv_bytes(), L) |
| 4120 | |
| 4121 | @classmethod |
| 4122 | def _child_dont_merge(cls, b): |
nothing calls this directly
no test coverage detected