Preprocess the output of the command so that extra data can be capture or the format changed on the fly.
(self, data: str, is_stdout=False)
| 35 | raise NotImplementedError() |
| 36 | |
| 37 | def preprocess_output(self, data: str, is_stdout=False): |
| 38 | """Preprocess the output of the command so that extra data can be |
| 39 | capture or the format changed on the fly.""" |
| 40 | raise NotImplementedError() |
| 41 | |
| 42 | def terminate(self): |
| 43 | """Terminate or return the exit code.""" |
nothing calls this directly
no outgoing calls
no test coverage detected