xref: /aosp_15_r20/build/soong/python/scripts/main_non_embedded.py (revision 333d2b3687b3a337dbcca9d65000bca186795e39)
1import runpy
2
3# The purpose of this file is to implement python 3.11+'s
4# PYTHON_SAFE_PATH / -P option on older python versions.
5
6runpy._run_module_as_main("ENTRY_POINT", alter_argv=False)
7