MCPcopy Index your code
hub / github.com/python/cpython / terminate

Method terminate

Lib/multiprocessing/process.py:135–140  ·  view source on GitHub ↗

Terminate process; sends SIGTERM signal or uses TerminateProcess()

(self)

Source from the content-addressed store, hash-verified

133 self._popen.interrupt()
134
135 def terminate(self):
136 '''
137 Terminate process; sends SIGTERM signal or uses TerminateProcess()
138 '''
139 self._check_closed()
140 self._popen.terminate()
141
142 def kill(self):
143 '''

Callers

nothing calls this directly

Calls 1

_check_closedMethod · 0.95

Tested by

no test coverage detected