src/eric7/Debugger/DebuggerInterfacePython.py

branch
eric7
changeset 11029
1cd8701ed260
parent 11009
5206e4c572e8
child 11063
bb05d1db9286
child 11087
8f5d1b5e16c9
equal deleted inserted replaced
11028:6353fe3204c9 11029:1cd8701ed260
1615 "text": text, 1615 "text": text,
1616 }, 1616 },
1617 debuggerId, 1617 debuggerId,
1618 ) 1618 )
1619 1619
1620 def setAutoContinue(self, autoContinue):
1621 """
1622 Public method to set the automatic continue flag of the interface.
1623
1624 If this is set to True, the debugger will tell the debug client to continue
1625 when it stops at the first line of the script to be debugged.
1626
1627 @param autoContinue flag indicating the auto continue state
1628 @type bool
1629 """
1630 self.__autoContinue = autoContinue
1631
1620 def __receiveJson(self, sock): 1632 def __receiveJson(self, sock):
1621 """ 1633 """
1622 Private method to handle data from the client. 1634 Private method to handle data from the client.
1623 1635
1624 @param sock reference to the socket to read data from 1636 @param sock reference to the socket to read data from

eric ide

mercurial