##// END OF EJS Templates
Fix the failure of "Build docs" workflow (#14544)...
Fix the failure of "Build docs" workflow (#14544) Fixes #14542. Local run of the following command (along with previous steps) failed before deleting this line, and succeeded afterwards. ``` make -C docs/ html SPHINXOPTS="-W" \ PYTHON="coverage run -a" \ SPHINXBUILD="coverage run -a -m sphinx.cmd.build" ```

File last commit:

r28782:9b49aad9
r28900:a0e0c86b merge
Show More
_process_emscripten.py
22 lines | 503 B | text/x-python | PythonLexer
/ IPython / utils / _process_emscripten.py
"""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"]