diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-04-20 15:23:18 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-04-20 15:23:18 (GMT) |
commit | 1f8dd363b72a018842d2cb4bdd5dc2d31f6d53df (patch) | |
tree | b841016aac475dc2b0696949e85ffff9a59f4676 | |
parent | 1c3d1939602341cf7a6ba5a76a99f07b32731d46 (diff) | |
download | cpython-1f8dd363b72a018842d2cb4bdd5dc2d31f6d53df.zip cpython-1f8dd363b72a018842d2cb4bdd5dc2d31f6d53df.tar.gz cpython-1f8dd363b72a018842d2cb4bdd5dc2d31f6d53df.tar.bz2 |
Add version info for os.kill and signal changes from #1220212.
-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 e5e00d0..6777196 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 300c717..8ac7bee 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 |