(self, command, *a, **kw)
| 208 | return out |
| 209 | |
| 210 | def readlines(self, command, *a, **kw): |
| 211 | out = self.read(command, *a, **kw) |
| 212 | return out.rstrip("\n").split("\n") |
| 213 | |
| 214 | def test(self, command, *a, **kw): |
| 215 | ret = self._call(command, a, {"stdout": subprocess.PIPE, |