src/eric7/Debugger/DebuggerInterfacePython.py

branch
eric7
changeset 9972
68ac01294544
parent 9971
773ad1f1ed22
child 10004
983477114d3c
child 10065
de4ae767b0e3
equal deleted inserted replaced
9971:773ad1f1ed22 9972:68ac01294544
659 Private slot to flush the queue. 659 Private slot to flush the queue.
660 """ 660 """
661 if self.__mainDebugger: 661 if self.__mainDebugger:
662 # Send commands that were waiting for the connection. 662 # Send commands that were waiting for the connection.
663 for cmd in self.queue: 663 for cmd in self.queue:
664 self.__writeJsonCommandToSocket(cmd, self.__connections[self.__mainDebugger]) 664 self.__writeJsonCommandToSocket(
665 cmd, self.__connections[self.__mainDebugger]
666 )
665 667
666 self.queue = [] 668 self.queue = []
667 669
668 def shutdown(self): 670 def shutdown(self):
669 """ 671 """

eric ide

mercurial