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 e328399..c41ee1b 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1500,6 +1500,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:: 3.2 Windows support + .. function:: killpg(pgid, sig) diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 45b78a2..7b40e8e 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -77,16 +77,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:: 3.2 + .. data:: CTRL_BREAK_EVENT The signal corresponding to the CTRL+BREAK keystroke event. - Availability: Windows. + .. versionadded:: 3.2 + .. data:: NSIG |