コード例 #1
0
ファイル: __init__.py プロジェクト: ZCG-coder/thonny
 def destroy(self, for_restart: bool = False):
     try:
         self.send_command(ImmediateCommand("kill"))
     except BrokenPipeError:
         pass
     except OSError:
         pass
     super().destroy()
コード例 #2
0
 def destroy(self):
     try:
         self.send_command(ImmediateCommand("kill"))
     except BrokenPipeError:
         pass
     except OSError:
         pass
     super().destroy()
コード例 #3
0
ファイル: __init__.py プロジェクト: ZCG-coder/thonny
 def interrupt(self):
     # Don't interrupt local process, but direct it to device
     self._send_msg(ImmediateCommand("interrupt"))