(self, command, pool=None)
| 22 | class DefaultOSContext: |
| 23 | |
| 24 | def __init__(self, command, pool=None): |
| 25 | self.command = command |
| 26 | self.pool = pool or DefaultExecutionPool(self) |
| 27 | |
| 28 | @contextmanager |
| 29 | def handle_context(self, options): |
nothing calls this directly
no test coverage detected