/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/ipython/py3/IPython/utils/_process_emscripten.py
23 строки
504 B
Anton Myagkov
Update ydb version to 24.4 (#4579)
07 фев 2026, 11:59
Не верифицирован
07 фев 2026, 11:59
2c21cae
Код
Авторство
О чём код?
"""Emscripten-specific implementation of process utilities. This file is only meant to be imported by process.py, not by end-users. """ from ._process_common import arg_split def system(cmd): raise OSError("Not available") def getoutput(cmd): raise OSError("Not available") def check_pid(cmd): raise OSError("Not available") # `arg_split` is still used by magics regardless of whether we are on a posix/windows/emscipten __all__ = ["system", "getoutput", "check_pid", "arg_split"]