This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Typo in documentation of "signal"
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: benjamin.peterson, georg.brandl, yam850
Priority: normal Keywords:

Created on 2008-12-19 00:28 by yam850, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg78050 - (view) Author: Kurt Mueller (yam850) Date: 2008-12-19 00:28
in documentation of "signal"
http://docs.python.org/library/signal.html
---------------------------------
signal.SIG_DFL
This is one of two standard signal handling options; it will simply 
perform the default function for the signal. For example, on most 
systems the default action for SIGQUIT is to dump core and exit, while 
the default action for SIGCLD is to simply ignore it.
---------------------------------
Typo:
SIGCLD
should be
SIGCHLD
msg78052 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-12-19 02:29
Thanks for the report! Fixed in r67848.
History
Date User Action Args
2022-04-11 14:56:43adminsetgithub: 48949
2008-12-19 02:29:23benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg78052
nosy: + benjamin.peterson
2008-12-19 00:28:46yam850create