src/eric7/Debugger/DebugUI.py

branch
eric7
changeset 10065
de4ae767b0e3
parent 10044
fd95315b1c26
child 10306
904f4c7da759
equal deleted inserted replaced
10064:8c3207703dac 10065:de4ae767b0e3
1259 @param debuggerId ID of the debugger backend 1259 @param debuggerId ID of the debugger backend
1260 @type str 1260 @type str
1261 """ 1261 """
1262 self.__clientDebuggerIds.add(debuggerId) 1262 self.__clientDebuggerIds.add(debuggerId)
1263 1263
1264 def __clientLine(self, fn, line, debuggerId, threadName, forStack): 1264 def __clientLine(self, fn, line, debuggerId, threadName, forStack): # noqa: U100
1265 """ 1265 """
1266 Private method to handle a change to the current line. 1266 Private method to handle a change to the current line.
1267 1267
1268 @param fn filename 1268 @param fn filename
1269 @type str 1269 @type str
1521 else: 1521 else:
1522 self.debugActions[self.lastAction](debuggerId) 1522 self.debugActions[self.lastAction](debuggerId)
1523 else: 1523 else:
1524 self.__continue(debuggerId) 1524 self.__continue(debuggerId)
1525 1525
1526 def __clientSignal(self, message, filename, lineNo, funcName, funcArgs, debuggerId): 1526 def __clientSignal(
1527 self, message, filename, lineNo, funcName, funcArgs, debuggerId # noqa: U100
1528 ):
1527 """ 1529 """
1528 Private method to handle a signal generated on the client side. 1530 Private method to handle a signal generated on the client side.
1529 1531
1530 @param message message of the syntax error 1532 @param message message of the syntax error
1531 @type str 1533 @type str
1655 @param debuggerId ID of the debugger backend 1657 @param debuggerId ID of the debugger backend
1656 @type str 1658 @type str
1657 """ 1659 """
1658 self.debugServer.remoteClientDisassembly(debuggerId) 1660 self.debugServer.remoteClientDisassembly(debuggerId)
1659 1661
1660 def __clientBreakConditionError(self, filename, lineno, debuggerId): 1662 def __clientBreakConditionError(self, filename, lineno, debuggerId): # noqa: U100
1661 """ 1663 """
1662 Private method to handle a condition error of a breakpoint. 1664 Private method to handle a condition error of a breakpoint.
1663 1665
1664 @param filename filename of the breakpoint 1666 @param filename filename of the breakpoint
1665 @type str 1667 @type str
1713 Preferences.Prefs.rsettings.setValue( 1715 Preferences.Prefs.rsettings.setValue(
1714 recentNameBreakpointConditions, condHistory 1716 recentNameBreakpointConditions, condHistory
1715 ) 1717 )
1716 Preferences.Prefs.rsettings.sync() 1718 Preferences.Prefs.rsettings.sync()
1717 1719
1718 def __clientWatchConditionError(self, cond, debuggerId): 1720 def __clientWatchConditionError(self, cond, debuggerId): # noqa: U100
1719 """ 1721 """
1720 Private method to handle a expression error of a watch expression. 1722 Private method to handle a expression error of a watch expression.
1721 1723
1722 Note: This can only happen for normal watch expressions 1724 Note: This can only happen for normal watch expressions
1723 1725

eric ide

mercurial