.. note::
On Windows only SIGTERM is supported so far. It's an alias for
- *terminate*.
+ :meth:`terminate`.
+
+ .. versionadded:: 2.6
.. method:: Popen.terminate()
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: