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

Method terminate

Lib/multiprocessing/process.py:128–133  ·  view source on GitHub ↗

Terminate process; sends SIGTERM signal or uses TerminateProcess()

(self)

Source from the content-addressed store, hash-verified

126 _children.add(self)
127
128 def terminate(self):
129 '''
130 Terminate process; sends SIGTERM signal or uses TerminateProcess()
131 '''
132 self._check_closed()
133 self._popen.terminate()
134
135 def kill(self):
136 '''

Callers

nothing calls this directly

Calls 1

_check_closedMethod · 0.95

Tested by

no test coverage detected