MCPcopy Index your code
hub / github.com/RustPython/RustPython / kill

Method kill

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

Terminate process; sends SIGKILL signal or uses TerminateProcess()

(self)

Source from the content-addressed store, hash-verified

133 self._popen.terminate()
134
135 def kill(self):
136 '''
137 Terminate process; sends SIGKILL signal or uses TerminateProcess()
138 '''
139 self._check_closed()
140 self._popen.kill()
141
142 def join(self, timeout=None):
143 '''

Callers

nothing calls this directly

Calls 1

_check_closedMethod · 0.95

Tested by

no test coverage detected