##// END OF EJS Templates
Some readme and formatting Cleanup (#14449)
Some readme and formatting Cleanup (#14449)

File last commit:

r28782:9b49aad9
r28786:1b4607fb merge
Show More
_process_emscripten.py
22 lines | 503 B | text/x-python | PythonLexer
/ IPython / utils / _process_emscripten.py
Matthias Koeppe
IPython/utils/_process_emscripten.py: Add file header
r28613 """Emscripten-specific implementation of process utilities.
This file is only meant to be imported by process.py, not by end-users.
"""
Matthias Bussonnier
Reexport arg_split on emscripten....
r28677 from ._process_common import arg_split
Hood Chatham
IPython/utils/_process_emscripten.py: New
r28611 def system(cmd):
raise OSError("Not available")
Matthias Koeppe
IPython/utils/_process_emscripten.py: Codestyle fix
r28614
Hood Chatham
IPython/utils/_process_emscripten.py: New
r28611 def getoutput(cmd):
raise OSError("Not available")
Matthias Koeppe
IPython/utils/_process_emscripten.py: Codestyle fix
r28614
Hood Chatham
IPython/utils/_process_emscripten.py: New
r28611 def check_pid(cmd):
raise OSError("Not available")
Matthias Koeppe
IPython/utils/_process_emscripten.py: Codestyle fix
r28614
Matthias Bussonnier
Reexport arg_split on emscripten....
r28677 # `arg_split` is still used by magics regardless of whether we are on a posix/windows/emscipten
__all__ = ["system", "getoutput", "check_pid", "arg_split"]