[Python-checkins] python/dist/src/Doc/lib libos.tex,1.141,1.142

arigo at users.sourceforge.net arigo at users.sourceforge.net
Mon Sep 27 21:54:35 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27542/Doc/lib

Modified Files:
	libos.tex 
Log Message:
Patch #1009075, bug #952953: allow execve with empty 2nd argument



Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -d -r1.141 -r1.142
--- libos.tex	29 Aug 2004 15:46:20 -0000	1.141
+++ libos.tex	27 Sep 2004 19:54:32 -0000	1.142
@@ -1226,8 +1226,8 @@
 \function{execl*()} functions.  The \character{v} variants are good
 when the number of parameters is variable, with the arguments being
 passed in a list or tuple as the \var{args} parameter.  In either
-case, the arguments to the child process must start with the name of
-the command being run.
+case, the arguments to the child process should start with the name of
+the command being run, but this is not enforced.
 
 The variants which include a \character{p} near the end
 (\function{execlp()}, \function{execlpe()}, \function{execvp()},



More information about the Python-checkins mailing list