asyncio.BaseSubprocessTransport.terminate()

terminate()

Ask the subprocess to stop, as in subprocess.Popen.terminate(). This method is an alias for the close() method.

On POSIX systems, this method sends SIGTERM to the subprocess. On Windows, the Windows API function TerminateProcess() is called to stop the subprocess.

doc_python
2016-10-07 17:26:42
Comments
Leave a Comment

Please login to continue.