(self, fun, *args, **kwargs)
| 138 | # Wrapper for side effects. |
| 139 | class SideEffectHandler(object): # pragma: no cover |
| 140 | def Call(self, fun, *args, **kwargs): |
| 141 | return fun(*args, **kwargs) |
| 142 | |
| 143 | def Command(self, cmd, args="", prefix="", pipe=True, cwd=None): |
| 144 | return Command(cmd, args, prefix, pipe, cwd=cwd) |