]> granicus.if.org Git - python/commitdiff
Fix-up docs for revision 62386.
authorGeorg Brandl <georg@python.org>
Sat, 19 Apr 2008 08:23:59 +0000 (08:23 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 19 Apr 2008 08:23:59 +0000 (08:23 +0000)
Doc/library/subprocess.rst

index 09dbbd18c6eb62c68848a702d53a800b925b78e5..d1471f1ff83da6e1bc9cd9f7cd4ad8966e47f41d 100644 (file)
@@ -215,7 +215,9 @@ Instances of the :class:`Popen` class have the following methods:
    .. note::
 
       On Windows only SIGTERM is supported so far. It's an alias for
-      *terminate*.
+      :meth:`terminate`.
+
+   .. versionadded:: 2.6
 
 
 .. method:: Popen.terminate()
@@ -224,11 +226,15 @@ 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 *kill* is an alias for *terminate*.
+   On Windows :meth:`kill` is an alias for :meth:`terminate`.
+
+   .. versionadded:: 2.6
 
 
 The following attributes are also available: