]> granicus.if.org Git - python/commitdiff
spawnv, spawnve docstrings: added mode parameter; this is required!
authorFred Drake <fdrake@acm.org>
Mon, 1 Feb 1999 22:24:40 +0000 (22:24 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 1 Feb 1999 22:24:40 +0000 (22:24 +0000)
Modules/posixmodule.c

index 1be268c258379c6e51e4181e8ef2eedbf98b8a06..e309dc1e3ec69e3d7be34fff23ad4f589545a1de 100644 (file)
@@ -1413,9 +1413,10 @@ posix_execve(self, args)
 
 #ifdef HAVE_SPAWNV
 static char posix_spawnv__doc__[] =
-"spawnv(path, args)\n\
+"spawnv(mode, path, args)\n\
 Execute an executable path with arguments, replacing current process.\n\
 \n\
+       mode: mode of process creation\n\
        path: path of executable file\n\
        args: tuple or list of strings";
 
@@ -1472,9 +1473,10 @@ posix_spawnv(self, args)
 
 
 static char posix_spawnve__doc__[] =
-"spawnve(path, args, env)\n\
+"spawnve(mode, path, args, env)\n\
 Execute a path with arguments and environment, replacing current process.\n\
 \n\
+       mode: mode of process creation\n\
        path: path of executable file\n\
        args: tuple or list of arguments\n\
        env: dictonary of strings mapping to strings";