Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8bbe9b43
Commit
8bbe9b43
authored
Mar 31, 2012
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix formatting
parent
682d443e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
Doc/library/signal.rst
Doc/library/signal.rst
+7
-7
No files found.
Doc/library/signal.rst
View file @
8bbe9b43
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment