(self, timeout=None)
| 78 | return _ReplayPipe(self) |
| 79 | |
| 80 | def wait_close(self, timeout=None): |
| 81 | if (timeout is not None) and (timeout > 0): |
| 82 | self._wait_close_timed(timeout) |
| 83 | else: |
| 84 | self._wait_close_unlimited() |
| 85 | |
| 86 | def _wait_close_unlimited(self): |
| 87 | with self.close_condition: |
no test coverage detected