[Python-checkins] cpython: Fix formatting

antoine.pitrou python-checkins at python.org
Sat Mar 31 21:15:00 CEST 2012


http://hg.python.org/cpython/rev/2f158dbebacf
changeset:   76029:2f158dbebacf
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Mar 31 21:09:53 2012 +0200
summary:
  Fix formatting

files:
  Doc/library/signal.rst |  14 +++++++-------
  1 files changed, 7 insertions(+), 7 deletions(-)


diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst
--- a/Doc/library/signal.rst
+++ b/Doc/library/signal.rst
@@ -238,13 +238,13 @@
 
    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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list