(self, *exc_info)
| 160 | self.path.write_text(self.content, encoding="utf-16") |
| 161 | |
| 162 | def __exit__(self, *exc_info): |
| 163 | if self._preserved is None: |
| 164 | self.path.unlink() |
| 165 | else: |
| 166 | self.path.write_bytes(self._preserved) |
| 167 | |
| 168 | |
| 169 | class RunPyMixin: |
nothing calls this directly
no test coverage detected