diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-11 02:44:34 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-11 02:44:34 (GMT) |
commit | 199e3f8b96c7576e400def369624ca78c97afec8 (patch) | |
tree | cdcd41972115f56108233e8279381ced24ea2f01 /Doc/library | |
parent | 57a01d3a0ee20ee9eea69b658c6bac0f39541625 (diff) | |
download | cpython-199e3f8b96c7576e400def369624ca78c97afec8.zip cpython-199e3f8b96c7576e400def369624ca78c97afec8.tar.gz cpython-199e3f8b96c7576e400def369624ca78c97afec8.tar.bz2 |
Issue #14456: Remove contradiction about blocking signals from bad merge
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/signal.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index e3efc8b..98eb7fd 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -22,9 +22,6 @@ explicitly reset (Python emulates the BSD style interface regardless of the underlying implementation), with the exception of the handler for :const:`SIGCHLD`, which follows the underlying implementation. -There is no way to "block" signals temporarily from critical sections (since -this is not supported by all Unix flavors). - Execution of Python signal handlers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |