Commit 9ff4aea2 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Minor edits

parent 4bffe829
...@@ -143,8 +143,8 @@ The :mod:`signal` module defines the following functions: ...@@ -143,8 +143,8 @@ The :mod:`signal` module defines the following functions:
.. function:: setitimer(which, seconds[, interval]) .. function:: setitimer(which, seconds[, interval])
Sets given itimer (one of :const:`signal.ITIMER_REAL`, Sets given interval timer (one of :const:`signal.ITIMER_REAL`,
:const:`signal.ITIMER_VIRTUAL` or :const:`signal.ITIMER_PROF`) especified :const:`signal.ITIMER_VIRTUAL` or :const:`signal.ITIMER_PROF`) specified
by *which* to fire after *seconds* (float is accepted, different from by *which* to fire after *seconds* (float is accepted, different from
:func:`alarm`) and after that every *interval* seconds. The interval :func:`alarm`) and after that every *interval* seconds. The interval
timer specified by *which* can be cleared by setting seconds to zero. timer specified by *which* can be cleared by setting seconds to zero.
...@@ -159,7 +159,7 @@ The :mod:`signal` module defines the following functions: ...@@ -159,7 +159,7 @@ The :mod:`signal` module defines the following functions:
.. function:: getitimer(which) .. 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 .. versionadded:: 2.6
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment