(self)
| 376 | self._assert_python([doesnotexist, "-c"], executable=sys.executable) |
| 377 | |
| 378 | def test_bytes_executable(self): |
| 379 | doesnotexist = os.path.join(os.path.dirname(sys.executable), |
| 380 | "doesnotexist") |
| 381 | self._assert_python([doesnotexist, "-c"], |
| 382 | executable=os.fsencode(sys.executable)) |
| 383 | |
| 384 | def test_pathlike_executable(self): |
| 385 | doesnotexist = os.path.join(os.path.dirname(sys.executable), |
nothing calls this directly
no test coverage detected