kill(self)
Kill the subprocess, as in subprocess.Popen.kill()
.
On POSIX systems, the function sends SIGKILL to the subprocess. On Windows, this method is an alias for terminate()
.
kill(self)
Kill the subprocess, as in subprocess.Popen.kill()
.
On POSIX systems, the function sends SIGKILL to the subprocess. On Windows, this method is an alias for terminate()
.
Please login to continue.