Return the Popen object that refers to the current command.
(self)
| 25 | class CommandProcess: |
| 26 | @property |
| 27 | def process(self): |
| 28 | """Return the Popen object that refers to the current command.""" |
| 29 | raise NotImplementedError() |
| 30 | |
| 31 | @property |
| 32 | def exit_status(self): |
nothing calls this directly
no outgoing calls
no test coverage detected