(self, cmd)
| 61 | else: |
| 62 | self.run_single(cmd) |
| 63 | def run_to_str(self, cmd): |
| 64 | out = "" |
| 65 | if isinstance(cmd, list): |
| 66 | for c in cmd: |
| 67 | out += self.run_single_to_str(c) |
| 68 | else: |
| 69 | out = self.run_single_to_str(cmd) |
| 70 | return out |
| 71 | def cd(self, dirname): |
| 72 | os.chdir(dirname) |
| 73 |
nothing calls this directly
no test coverage detected