[Python-checkins] r52037 - python/branches/release24-maint/Doc/lib/libos.tex

andrew.kuchling python-checkins at python.org
Fri Sep 29 14:47:00 CEST 2006


Author: andrew.kuchling
Date: Fri Sep 29 14:47:00 2006
New Revision: 52037

Modified:
   python/branches/release24-maint/Doc/lib/libos.tex
Log:
[Backport rev.39739 by nnorwitz]

SF bug #1328915, try to word kill a bit more generically.  Backport candidate.



Modified: python/branches/release24-maint/Doc/lib/libos.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libos.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libos.tex	Fri Sep 29 14:47:00 2006
@@ -1462,7 +1462,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.
@@ -1471,7 +1471,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