(self, exc_type, exc_val, exc_tb)
| 161 | return self.client() |
| 162 | |
| 163 | def __exit__(self, exc_type, exc_val, exc_tb): |
| 164 | self.stop() |
| 165 | if exc_val or self.errored: |
| 166 | sys.stderr.write("Redis output: {}\n".format(self._get_output())) |
| 167 | |
| 168 | def _wait_for_child(self): |
| 169 | # Wait until file is available |
nothing calls this directly
no test coverage detected