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

andrew.kuchling python-checkins at python.org
Tue Mar 4 02:30:10 CET 2008


Author: andrew.kuchling
Date: Tue Mar  4 02:30:10 2008
New Revision: 61218

Modified:
   python/trunk/Doc/library/signal.rst
Log:
Grammar fix; markup fix

Modified: python/trunk/Doc/library/signal.rst
==============================================================================
--- python/trunk/Doc/library/signal.rst	(original)
+++ python/trunk/Doc/library/signal.rst	Tue Mar  4 02:30:10 2008
@@ -128,12 +128,12 @@
 .. function:: siginterrupt(signalnum, flag)
 
    Change system call restart behaviour: if *flag* is :const:`False`, system calls
-   will be restarted when interrupted by signal *signalnum*, else system calls will
+   will be restarted when interrupted by signal *signalnum*, otherwise system calls will
    be interrupted. Returns nothing. Availability: Unix, Mac (see the man page
    :manpage:`siginterrupt(3)` for further information).
    
    Note that installing a signal handler with :func:`signal` will reset the restart
-   behaviour to interruptible by implicitly calling siginterrupt with a true *flag*
+   behaviour to interruptible by implicitly calling :cfunc:`siginterrupt` with a true *flag*
    value for the given signal.
 
    .. versionadded:: 2.6


More information about the Python-checkins mailing list