()
| 76 | |
| 77 | |
| 78 | def _impl_exe_name() -> str: |
| 79 | if sys.implementation.name == 'cpython': # pragma: cpython cover |
| 80 | return 'python' |
| 81 | else: # pragma: cpython no cover |
| 82 | return sys.implementation.name # pypy mostly |
| 83 | |
| 84 | |
| 85 | def _find_by_sys_executable() -> str | None: |
no outgoing calls
no test coverage detected