##// END OF EJS Templates
IPython/utils/_process_emscripten.py: Codestyle fix
Matthias Koeppe -
Show More
@@ -3,15 +3,19 b''
3 This file is only meant to be imported by process.py, not by end-users.
3 This file is only meant to be imported by process.py, not by end-users.
4 """
4 """
5
5
6
6 def system(cmd):
7 def system(cmd):
7 raise OSError("Not available")
8 raise OSError("Not available")
8
9
10
9 def getoutput(cmd):
11 def getoutput(cmd):
10 raise OSError("Not available")
12 raise OSError("Not available")
11
13
14
12 def check_pid(cmd):
15 def check_pid(cmd):
13 raise OSError("Not available")
16 raise OSError("Not available")
14
17
18
15 def arg_split(s, posix=False, strict=True):
19 def arg_split(s, posix=False, strict=True):
16 """This one could be made to work but it's not clear if it would be useful..."""
20 """This one could be made to work but it's not clear if it would be useful..."""
17 raise OSError("Not available")
21 raise OSError("Not available")
General Comments 0
You need to be logged in to leave comments. Login now