Show More
@@ -1,12 +1,17 b'' | |||||
|
1 | """Emscripten-specific implementation of process utilities. | |||
|
2 | ||||
|
3 | This file is only meant to be imported by process.py, not by end-users. | |||
|
4 | """ | |||
|
5 | ||||
1 | def system(cmd): |
|
6 | def system(cmd): | |
2 | raise OSError("Not available") |
|
7 | raise OSError("Not available") | |
3 |
|
8 | |||
4 | def getoutput(cmd): |
|
9 | def getoutput(cmd): | |
5 | raise OSError("Not available") |
|
10 | raise OSError("Not available") | |
6 |
|
11 | |||
7 | def check_pid(cmd): |
|
12 | def check_pid(cmd): | |
8 | raise OSError("Not available") |
|
13 | raise OSError("Not available") | |
9 |
|
14 | |||
10 | def arg_split(s, posix=False, strict=True): |
|
15 | def arg_split(s, posix=False, strict=True): | |
11 | """This one could be made to work but it's not clear if it would be useful...""" |
|
16 | """This one could be made to work but it's not clear if it would be useful...""" | |
12 | raise OSError("Not available") |
|
17 | raise OSError("Not available") |
General Comments 0
You need to be logged in to leave comments.
Login now