@@ -69,17 +69,17 @@ def os_members():
6969# unlike os.exec*, some os.spawn* functions is usable with keyword arguments. However,
7070# despite the docs using both `file` and `path` as the parameter name, you actually need
7171# 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"
7676
7777# `posix_spawn` Added in Python 3.8
7878os .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"
8080
8181os .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"
8383
8484########################################
8585
0 commit comments