mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Fix formatting
This commit is contained in:
parent
682d443e01
commit
8bbe9b4390
1 changed files with 7 additions and 7 deletions
|
@ -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.
|
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
|
* :data:`SIG_BLOCK`: The set of blocked signals is the union of the current
|
||||||
set and the *mask* argument.
|
set and the *mask* argument.
|
||||||
* :data:`SIG_UNBLOCK`: The signals in *mask* are removed from the current
|
* :data:`SIG_UNBLOCK`: The signals in *mask* are removed from the current
|
||||||
set of blocked signals. It is permissible to attempt to unblock a
|
set of blocked signals. It is permissible to attempt to unblock a
|
||||||
signal which is not blocked.
|
signal which is not blocked.
|
||||||
* :data:`SIG_SETMASK`: The set of blocked signals is set to the *mask*
|
* :data:`SIG_SETMASK`: The set of blocked signals is set to the *mask*
|
||||||
argument.
|
argument.
|
||||||
|
|
||||||
*mask* is a set of signal numbers (e.g. {:const:`signal.SIGINT`,
|
*mask* is a set of signal numbers (e.g. {:const:`signal.SIGINT`,
|
||||||
:const:`signal.SIGTERM`}). Use ``range(1, signal.NSIG)`` for a full mask
|
:const:`signal.SIGTERM`}). Use ``range(1, signal.NSIG)`` for a full mask
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue