r62158 - python/trunk/Doc/library/signal.rst
Author: andrew.kuchling Date: Sat Apr 5 04:42:20 2008 New Revision: 62158 Modified: python/trunk/Doc/library/signal.rst Log: Minor edits Modified: python/trunk/Doc/library/signal.rst ============================================================================== --- python/trunk/Doc/library/signal.rst (original) +++ python/trunk/Doc/library/signal.rst Sat Apr 5 04:42:20 2008 @@ -143,8 +143,8 @@ .. function:: setitimer(which, seconds[, interval]) - Sets given itimer (one of :const:`signal.ITIMER_REAL`, - :const:`signal.ITIMER_VIRTUAL` or :const:`signal.ITIMER_PROF`) especified + Sets given interval timer (one of :const:`signal.ITIMER_REAL`, + :const:`signal.ITIMER_VIRTUAL` or :const:`signal.ITIMER_PROF`) specified by *which* to fire after *seconds* (float is accepted, different from :func:`alarm`) and after that every *interval* seconds. The interval timer specified by *which* can be cleared by setting seconds to zero. @@ -159,7 +159,7 @@ .. function:: getitimer(which) - Returns current value of a given itimer especified by *which*. + Returns current value of a given interval timer especified by *which*. .. versionadded:: 2.6
participants (1)
-
andrew.kuchling