diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-04-05 02:42:20 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-04-05 02:42:20 (GMT) |
commit | 9ff4aea24cf82468bb89d3a1cb872a6dd9fd9cff (patch) | |
tree | d859252cc4a07acf10526d46091586401ce86f1e | |
parent | 4bffe8293f8daab239a3f9f082984454b8e86d03 (diff) | |
download | cpython-9ff4aea24cf82468bb89d3a1cb872a6dd9fd9cff.zip cpython-9ff4aea24cf82468bb89d3a1cb872a6dd9fd9cff.tar.gz cpython-9ff4aea24cf82468bb89d3a1cb872a6dd9fd9cff.tar.bz2 |
Minor edits
-rw-r--r-- | Doc/library/signal.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index e300c5a..9274113 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -143,8 +143,8 @@ The :mod:`signal` module defines the following functions: .. 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 @@ The :mod:`signal` module defines the following functions: .. 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 |