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 |