[Python-checkins] python/dist/src/Doc/lib libos.tex,1.169,1.170

nnorwitz@users.sourceforge.net nnorwitz at users.sourceforge.net
Tue Oct 18 07:07:52 CEST 2005


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

Modified Files:
	libos.tex 
Log Message:
SF bug #1328915, try to word kill a bit more generically.  Backport candidate.

Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -d -r1.169 -r1.170
--- libos.tex	3 Oct 2005 05:47:38 -0000	1.169
+++ libos.tex	18 Oct 2005 05:07:49 -0000	1.170
@@ -1490,7 +1490,7 @@
 \begin{funcdesc}{kill}{pid, sig}
 \index{process!killing}
 \index{process!signalling}
-Kill the process \var{pid} with signal \var{sig}.  Constants for the
+Send signal \var{sig} to the process \var{pid}.  Constants for the
 specific signals available on the host platform are defined in the
 \refmodule{signal} module.
 Availability: Macintosh, \UNIX.
@@ -1499,7 +1499,7 @@
 \begin{funcdesc}{killpg}{pgid, sig}
 \index{process!killing}
 \index{process!signalling}
-Kill the process group \var{pgid} with the signal \var{sig}.
+Send the signal \var{sig} to the process group \var{pgid}.
 Availability: Macintosh, \UNIX.
 \versionadded{2.3}
 \end{funcdesc}



More information about the Python-checkins mailing list