diff options
author | Fred Drake <fdrake@acm.org> | 2001-12-21 03:58:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-12-21 03:58:47 (GMT) |
commit | 5c7983113cd8b13bea6a5384d2a51f69d5a597c1 (patch) | |
tree | c4ed1b1df58c2c9b4ec9083f48b6564b3f1b4c9c | |
parent | dce2e1161addf3eb4dbb424739f1480da7249404 (diff) | |
download | cpython-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.tex | 4 |
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} |