From 1f8dd363b72a018842d2cb4bdd5dc2d31f6d53df Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Tue, 20 Apr 2010 15:23:18 +0000 Subject: [PATCH] Add version info for os.kill and signal changes from #1220212. --- Doc/library/os.rst | 2 ++ 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 e5e00d06c06..6777196f763 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 300c71762bf..8ac7bee0f0c 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