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 | 6 | def system(cmd): |
|
2 | 7 | raise OSError("Not available") |
|
3 | 8 | |
|
4 | 9 | def getoutput(cmd): |
|
5 | 10 | raise OSError("Not available") |
|
6 | 11 | |
|
7 | 12 | def check_pid(cmd): |
|
8 | 13 | raise OSError("Not available") |
|
9 | 14 | |
|
10 | 15 | def arg_split(s, posix=False, strict=True): |
|
11 | 16 | """This one could be made to work but it's not clear if it would be useful...""" |
|
12 | 17 | raise OSError("Not available") |
General Comments 0
You need to be logged in to leave comments.
Login now