(self, command, working_directory, all_env_variables)
| 24 | |
| 25 | class POpenProcessWrapper(process_base.ProcessWrapper): |
| 26 | def __init__(self, command, working_directory, all_env_variables): |
| 27 | super().__init__(command, working_directory, all_env_variables) |
| 28 | |
| 29 | def start_execution(self, command, working_directory): |
| 30 | shell = False |
nothing calls this directly
no outgoing calls
no test coverage detected