Run ``python -c "command"``.
(self, command: str)
| 1442 | return self.run(sys.executable, script) |
| 1443 | |
| 1444 | def runpython_c(self, command: str) -> RunResult: |
| 1445 | """Run ``python -c "command"``.""" |
| 1446 | return self.run(sys.executable, "-c", command) |
| 1447 | |
| 1448 | def runpytest_subprocess( |
| 1449 | self, *args: Union[str, "os.PathLike[str]"], timeout: Optional[float] = None |