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

Method interrupt

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

Terminate process; sends SIGINT signal

(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_check_closedMethod · 0.95

Tested by

no test coverage detected