summaryrefslogtreecommitdiffstats
path: root/Doc/library/signal.rst
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-03-31 19:09:53 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-03-31 19:09:53 (GMT)
commit8bbe9b4390480518ca41b6532f81d088f178b012 (patch)
tree36566cb94bf928e060b9cff72fbac25da5a0a99d /Doc/library/signal.rst
parent682d443e011a213ba577c6eed3a9c67508cc039e (diff)
downloadcpython-8bbe9b4390480518ca41b6532f81d088f178b012.zip
cpython-8bbe9b4390480518ca41b6532f81d088f178b012.tar.gz
cpython-8bbe9b4390480518ca41b6532f81d088f178b012.tar.bz2
Fix formatting
Diffstat (limited to 'Doc/library/signal.rst')
-rw-r--r--Doc/library/signal.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst
index f3ac55b..2a472fe 100644
--- a/Doc/library/signal.rst
+++ b/Doc/library/signal.rst
@@ -238,13 +238,13 @@ The :mod:`signal` module defines the following functions:
The behavior of the call is dependent on the value of *how*, as follows.
- * :data:`SIG_BLOCK`: The set of blocked signals is the union of the current
- set and the *mask* argument.
- * :data:`SIG_UNBLOCK`: The signals in *mask* are removed from the current
- set of blocked signals. It is permissible to attempt to unblock a
- signal which is not blocked.
- * :data:`SIG_SETMASK`: The set of blocked signals is set to the *mask*
- argument.
+ * :data:`SIG_BLOCK`: The set of blocked signals is the union of the current
+ set and the *mask* argument.
+ * :data:`SIG_UNBLOCK`: The signals in *mask* are removed from the current
+ set of blocked signals. It is permissible to attempt to unblock a
+ signal which is not blocked.
+ * :data:`SIG_SETMASK`: The set of blocked signals is set to the *mask*
+ argument.
*mask* is a set of signal numbers (e.g. {:const:`signal.SIGINT`,
:const:`signal.SIGTERM`}). Use ``range(1, signal.NSIG)`` for a full mask