diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-02-10 05:44:01 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-02-10 05:44:01 (GMT) |
commit | c04fb56e36999a4162e6ccfe1f9357100abaee99 (patch) | |
tree | 68f930a7b0956c487f671f6868fc00bac6edafb7 /Doc/library/signal.rst | |
parent | 96a4f07107476c0038ff1302b7ef779cab07e8ae (diff) | |
download | cpython-c04fb56e36999a4162e6ccfe1f9357100abaee99.zip cpython-c04fb56e36999a4162e6ccfe1f9357100abaee99.tar.gz cpython-c04fb56e36999a4162e6ccfe1f9357100abaee99.tar.bz2 |
Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar
The original form is incorrect grammar and feels awkward, even though the
meaning is clear.
Diffstat (limited to 'Doc/library/signal.rst')
-rw-r--r-- | Doc/library/signal.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 8f814df..e3efc8b 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -11,7 +11,7 @@ This module provides mechanisms to use signal handlers in Python. General rules ------------- -The :func:`signal.signal` function allows to define custom handlers to be +The :func:`signal.signal` function allows defining custom handlers to be executed when a signal is received. A small number of default handlers are installed: :const:`SIGPIPE` is ignored (so write errors on pipes and sockets can be reported as ordinary Python exceptions) and :const:`SIGINT` is |