MCPcopy Index your code
hub / github.com/fabioz/PyDev.Debugger / do_kill

Method do_kill

tests_python/debugger_unittest.py:356–369  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

354 pass
355
356 def do_kill(self):
357 self._kill = True
358 if hasattr(self, "sock"):
359 from socket import SHUT_RDWR
360
361 try:
362 self.sock.shutdown(SHUT_RDWR)
363 except:
364 pass
365 try:
366 self.sock.close()
367 except:
368 pass
369 delattr(self, "sock")
370
371
372def read_process(stream, buffer, debug_stream, stream_name, finish):

Callers 5

do_killFunction · 0.45
check_caseMethod · 0.45
do_killMethod · 0.45
test_attach_to_pidFunction · 0.45

Calls 2

shutdownMethod · 0.45
closeMethod · 0.45

Tested by

no test coverage detected