summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-12-21 03:58:47 (GMT)
committerFred Drake <fdrake@acm.org>2001-12-21 03:58:47 (GMT)
commit5c7983113cd8b13bea6a5384d2a51f69d5a597c1 (patch)
treec4ed1b1df58c2c9b4ec9083f48b6564b3f1b4c9c
parentdce2e1161addf3eb4dbb424739f1480da7249404 (diff)
downloadcpython-5c7983113cd8b13bea6a5384d2a51f69d5a597c1.zip
cpython-5c7983113cd8b13bea6a5384d2a51f69d5a597c1.tar.gz
cpython-5c7983113cd8b13bea6a5384d2a51f69d5a597c1.tar.bz2
Add a reference to the signal module to the os.kill() description.
This closes SF bug #495609.
-rw-r--r--Doc/lib/libos.tex4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index f09259d..9493c20 100644
--- a/Doc/lib/libos.tex
+++ b/Doc/lib/libos.tex
@@ -980,7 +980,9 @@ Availability: Some flavors of \UNIX.
\begin{funcdesc}{kill}{pid, sig}
\index{process!killing}
\index{process!signalling}
-Kill the process \var{pid} with signal \var{sig}.
+Kill the process \var{pid} with signal \var{sig}. Constants for the
+specific signals available on the host platform are defined in the
+\refmodule{signal} module.
Availability: \UNIX.
\end{funcdesc}