From: Fred Drake Date: Thu, 20 Dec 2001 17:24:11 +0000 (+0000) Subject: Fix the availability statement for the spawn*() functions to reflect the X-Git-Tag: v2.2.1c1~280 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c8e8715303aa80859ea545c07cb6278a9336e08;p=thirdparty%2FPython%2Fcpython.git Fix the availability statement for the spawn*() functions to reflect the actual availability on Windows. This fixes SF bug #495191. --- diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 9683485b5794..f09259d763b6 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -1060,8 +1060,9 @@ L = ['cp', 'index.html', '/dev/null'] os.spawnvpe(os.P_WAIT, 'cp', L, os.environ) \end{verbatim} -Availability: \UNIX, Windows. \function{spawnvp()} and -\function{spawnvpe()} are not available on Windows. +Availability: \UNIX, Windows. \function{spawnlp()}, +\function{spawnlpe()}, \function{spawnvp()} and \function{spawnvpe()} +are not available on Windows. \versionadded{1.6} \end{funcdesc}