(self, args, *otherargs, **kwargs)
| 102 | |
| 103 | class ProfiledPopen(original_Popen): |
| 104 | def __init__(self, args, *otherargs, **kwargs): |
| 105 | super().__init__(args, *otherargs, **kwargs) |
| 106 | ToolchainProfiler.record_subprocess_spawn(self.pid, args) |
| 107 | |
| 108 | def communicate(self, *args, **kwargs): |
| 109 | ToolchainProfiler.record_subprocess_wait(self.pid) |
nothing calls this directly
no test coverage detected