(self, command, working_directory, all_env_variables)
| 27 | |
| 28 | class PtyProcessWrapper(process_base.ProcessWrapper): |
| 29 | def __init__(self, command, working_directory, all_env_variables): |
| 30 | super().__init__(command, working_directory, all_env_variables) |
| 31 | |
| 32 | self.pty_master = None |
| 33 | self.pty_slave = None |
| 34 | |
| 35 | self.encoding = get_encoding(command, working_directory) |
| 36 | |
| 37 | def start_execution(self, command, working_directory): |
| 38 | master, slave = pty.openpty() |
nothing calls this directly
no test coverage detected