summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-03-04 01:30:10 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-03-04 01:30:10 (GMT)
commitece10b40040712e8e2daef4529c114c72bc7cd12 (patch)
tree4be4c8418b7826219c0f7a796b693f5a237ee4a5 /Doc
parent91ae0c9a70a1849e3060c47fb5ce81662e869051 (diff)
downloadcpython-ece10b40040712e8e2daef4529c114c72bc7cd12.zip
cpython-ece10b40040712e8e2daef4529c114c72bc7cd12.tar.gz
cpython-ece10b40040712e8e2daef4529c114c72bc7cd12.tar.bz2
Grammar fix; markup fix
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/signal.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst
index 7fe7ec1..e909992 100644
--- a/Doc/library/signal.rst
+++ b/Doc/library/signal.rst
@@ -128,12 +128,12 @@ The :mod:`signal` module defines the following functions:
.. 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