diff options
-rw-r--r-- | Doc/library/os.rst | 2 | ||||
-rw-r--r-- | Doc/library/signal.rst | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index e5e00d06c0..6777196f76 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1735,6 +1735,8 @@ written in Python, such as a mail server's external command delivery program. will be set to *sig*. The Windows version of :func:`kill` additionally takes process handles to be killed. + .. versionadded:: 2.7 Windows support + .. function:: killpg(pgid, sig) diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 300c71762b..8ac7bee0f0 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -78,16 +78,18 @@ The variables defined in the :mod:`signal` module are: .. data:: CTRL_C_EVENT The signal corresponding to the CTRL+C keystroke event. - Availability: Windows. + .. versionadded:: 2.7 + .. data:: CTRL_BREAK_EVENT The signal corresponding to the CTRL+BREAK keystroke event. - Availability: Windows. + .. versionadded:: 2.7 + .. data:: NSIG |