[Python-checkins] r67848 - python/trunk/Doc/library/signal.rst

benjamin.peterson python-checkins at python.org
Fri Dec 19 03:28:57 CET 2008


Author: benjamin.peterson
Date: Fri Dec 19 03:28:56 2008
New Revision: 67848

Log:
fix typo

Modified:
   python/trunk/Doc/library/signal.rst

Modified: python/trunk/Doc/library/signal.rst
==============================================================================
--- python/trunk/Doc/library/signal.rst	(original)
+++ python/trunk/Doc/library/signal.rst	Fri Dec 19 03:28:56 2008
@@ -52,10 +52,10 @@
 
 .. data:: 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 :const:`SIGQUIT` is to dump core and exit, while the default action
-   for :const:`SIGCLD` is to simply ignore it.
+   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 :const:`SIGQUIT` is to dump core and exit, while the
+   default action for :const:`SIGCHLD` is to simply ignore it.
 
 
 .. data:: SIG_IGN


More information about the Python-checkins mailing list