()
| 579 | |
| 580 | |
| 581 | def get_host_runner() -> str: |
| 582 | if (hostrunner := os.environ.get("_PYTHON_HOSTRUNNER")) is None: |
| 583 | hostrunner = sysconfig.get_config_var("HOSTRUNNER") |
| 584 | return hostrunner |
| 585 | |
| 586 | |
| 587 | def is_cross_compiled() -> bool: |
no test coverage detected