/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Tools/wasm/wasi/__main__.py
14 строк
446 B
Brett Cannon
GH-143941: Move WASI-related files to Platforms/WASI (GH-143942)
22 янв 2026, 01:31
Не верифицирован
22 янв 2026, 01:31
6181b69
Код
Авторство
О чём код?
if __name__ == "__main__": import pathlib import runpy import sys print( "⚠️ WARNING: This script is deprecated and slated for removal in Python 3.20; " "execute the `Platforms/WASI/` directory instead (i.e. `python Platforms/WASI`)\n", file=sys.stderr, ) checkout = pathlib.Path(__file__).parent.parent.parent.parent runpy.run_path(checkout / "Platforms" / "WASI", run_name="__main__")