@@ -69,17 +69,17 @@ def os_members():
69
69
# unlike os.exec*, some os.spawn* functions is usable with keyword arguments. However,
70
70
# despite the docs using both `file` and `path` as the parameter name, you actually need
71
71
# to use `file` in all cases.
72
- os .spawnv (mode = os .P_WAIT , file = "path" , args = ["<progname>" , "arg0" ]) # $ MISSING: getCommand="path" getAPathArgument="path"
73
- os .spawnve (mode = os .P_WAIT , file = "path" , args = ["<progname>" , "arg0" ], env = env ) # $ MISSING: getCommand="path" getAPathArgument="path"
74
- os .spawnvp (mode = os .P_WAIT , file = "file" , args = ["<progname>" , "arg0" ]) # $ MISSING: getCommand="file" getAPathArgument="file"
75
- os .spawnvpe (mode = os .P_WAIT , file = "file" , args = ["<progname>" , "arg0" ], env = env ) # $ MISSING: getCommand="file" getAPathArgument="file"
72
+ os .spawnv (mode = os .P_WAIT , file = "path" , args = ["<progname>" , "arg0" ]) # $ getCommand="path" MISSING: getAPathArgument="path"
73
+ os .spawnve (mode = os .P_WAIT , file = "path" , args = ["<progname>" , "arg0" ], env = env ) # $ getCommand="path" MISSING: getAPathArgument="path"
74
+ os .spawnvp (mode = os .P_WAIT , file = "file" , args = ["<progname>" , "arg0" ]) # $ getCommand="file" MISSING: getAPathArgument="file"
75
+ os .spawnvpe (mode = os .P_WAIT , file = "file" , args = ["<progname>" , "arg0" ], env = env ) # $ getCommand="file" MISSING: getAPathArgument="file"
76
76
77
77
# `posix_spawn` Added in Python 3.8
78
78
os .posix_spawn ("path" , ["<progname>" , "arg0" ], env ) # $ getCommand="path" MISSING: getAPathArgument="path"
79
- os .posix_spawn (path = "path" , argv = ["<progname>" , "arg0" ], env = env ) # $ MISSING: getCommand="path" getAPathArgument="path"
79
+ os .posix_spawn (path = "path" , argv = ["<progname>" , "arg0" ], env = env ) # $ getCommand="path" MISSING: getAPathArgument="path"
80
80
81
81
os .posix_spawnp ("path" , ["<progname>" , "arg0" ], env ) # $ getCommand="path" MISSING: getAPathArgument="path"
82
- os .posix_spawnp (path = "path" , argv = ["<progname>" , "arg0" ], env = env ) # $ MISSING: getCommand="path" getAPathArgument="path"
82
+ os .posix_spawnp (path = "path" , argv = ["<progname>" , "arg0" ], env = env ) # $ getCommand="path" MISSING: getAPathArgument="path"
83
83
84
84
########################################
85
85
0 commit comments