summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-04-24 02:34:53 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-04-24 02:34:53 (GMT)
commit35e8c4653455ceeac5b49b369b4c11be6096ea17 (patch)
tree56520e401f31f82834da704af56430a70683bac8 /Doc/library/subprocess.rst
parent3513358e11df32cc02047e48a9a9a976343ba16c (diff)
downloadcpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.zip
cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.gz
cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.bz2
remove some old versionchanged and versionadded directives
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r--Doc/library/subprocess.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 2344bcb..25aa008 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -212,8 +212,6 @@ Instances of the :class:`Popen` class have the following methods:
On Windows only SIGTERM is supported so far. It's an alias for
:meth:`terminate`.
- .. versionadded:: 2.6
-
.. method:: Popen.terminate()
@@ -221,16 +219,12 @@ Instances of the :class:`Popen` class have the following methods:
child. On Windows the Win32 API function TerminateProcess is called
to stop the child.
- .. versionadded:: 2.6
-
.. method:: Popen.kill()
Kills the child. On Posix OSs the function sends SIGKILL to the child.
On Windows :meth:`kill` is an alias for :meth:`terminate`.
- .. versionadded:: 2.6
-
The following attributes are also available: