##// END OF EJS Templates
Reexport arg_split on emscripten. (#14356)...
M Bussonnier -
r28681:10da2ebf merge
parent child Browse files
Show More
@@ -4,6 +4,9 b' This file is only meant to be imported by process.py, not by end-users.'
4 """
4 """
5
5
6
6
7 from ._process_common import arg_split
8
9
7 def system(cmd):
10 def system(cmd):
8 raise OSError("Not available")
11 raise OSError("Not available")
9
12
@@ -16,6 +19,5 b' def check_pid(cmd):'
16 raise OSError("Not available")
19 raise OSError("Not available")
17
20
18
21
19 def arg_split(s, posix=False, strict=True):
22 # `arg_split` is still used by magics regardless of whether we are on a posix/windows/emscipten
20 """This one could be made to work but it's not clear if it would be useful..."""
23 __all__ = ["system", "getoutput", "check_pid", "arg_split"]
21 raise OSError("Not available")
General Comments 0
You need to be logged in to leave comments. Login now