src/eric7/Debugger/DebugServer.py

branch
eric7-maintenance
changeset 10079
0222a480e93d
parent 10004
983477114d3c
parent 10065
de4ae767b0e3
child 10148
31ba20629af4
equal deleted inserted replaced
10005:097199aec4bd 10079:0222a480e93d
1569 self.debuggerInterface.remoteClientVariables( 1569 self.debuggerInterface.remoteClientVariables(
1570 debuggerId, scope, filterList, framenr, self.__maxVariableSize 1570 debuggerId, scope, filterList, framenr, self.__maxVariableSize
1571 ) 1571 )
1572 1572
1573 def remoteClientVariable( 1573 def remoteClientVariable(
1574 self, debuggerId, scope, filterList, var, framenr=0, maxSize=0 1574 self, debuggerId, scope, filterList, var, framenr=0, maxSize=0 # noqa: U100
1575 ): 1575 ):
1576 """ 1576 """
1577 Public method to request the variables of the debugged program. 1577 Public method to request the variables of the debugged program.
1578 1578
1579 @param debuggerId ID of the debugger backend 1579 @param debuggerId ID of the debugger backend
1985 """ 1985 """
1986 with contextlib.suppress(KeyError): 1986 with contextlib.suppress(KeyError):
1987 self.__debuggerInterfaceRegistry[clientType][0] = capabilities 1987 self.__debuggerInterfaceRegistry[clientType][0] = capabilities
1988 self.clientCapabilities.emit(capabilities, clientType, venvName) 1988 self.clientCapabilities.emit(capabilities, clientType, venvName)
1989 1989
1990 def signalClientCompletionList(self, completionList, text, debuggerId): 1990 def signalClientCompletionList(
1991 self, completionList, text, debuggerId # noqa: U100
1992 ):
1991 """ 1993 """
1992 Public method to process the client auto completion info. 1994 Public method to process the client auto completion info.
1993 1995
1994 @param completionList list of possible completions 1996 @param completionList list of possible completions
1995 @type list of str 1997 @type list of str

eric ide

mercurial