Commit 98206520 authored by Brian Curtin's avatar Brian Curtin

Issue #9524: Document that two CTRL* signals are meant for use only

with os.kill.
parent 3d274b32
......@@ -76,7 +76,9 @@ The variables defined in the :mod:`signal` module are:
.. data:: CTRL_C_EVENT
The signal corresponding to the CTRL+C keystroke event.
The signal corresponding to the CTRL+C keystroke event. This signal can
only be used with :func:`os.kill`.
Availability: Windows.
.. versionadded:: 3.2
......@@ -84,7 +86,9 @@ The variables defined in the :mod:`signal` module are:
.. data:: CTRL_BREAK_EVENT
The signal corresponding to the CTRL+BREAK keystroke event.
The signal corresponding to the CTRL+BREAK keystroke event. This signal can
only be used with :func:`os.kill`.
Availability: Windows.
.. versionadded:: 3.2
......
......@@ -1849,6 +1849,9 @@ Build
Documentation
------------
- Issue #9524: Document that two CTRL* signals are meant for use only
with os.kill.
- Issue #9255: Document that the 'test' package is meant for internal Python use
only.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment