eric6/Debugger/DebugServer.py

changeset 7862
817ef8e0fa66
parent 7780
41420f82c0ac
child 7863
6725d2549801
--- a/eric6/Debugger/DebugServer.py	Sun Dec 06 12:46:00 2020 +0100
+++ b/eric6/Debugger/DebugServer.py	Sun Dec 06 17:43:11 2020 +0100
@@ -1242,8 +1242,11 @@
         Public method to request the variables of the debugged program.
         
         @param scope the scope of the variables (0 = local, 1 = global)
-        @param filterList list of variable types to filter out (list of int)
-        @param framenr framenumber of the variables to retrieve (int)
+        @type int
+        @param filterList list of variable types to filter out
+        @type list of str
+        @param framenr framenumber of the variables to retrieve
+        @type int
         """
         self.debuggerInterface.remoteClientVariables(
             scope, filterList, framenr, self.__maxVariableSize)
@@ -1253,9 +1256,13 @@
         Public method to request the variables of the debugged program.
         
         @param scope the scope of the variables (0 = local, 1 = global)
-        @param filterList list of variable types to filter out (list of int)
-        @param var list encoded name of variable to retrieve (string)
-        @param framenr framenumber of the variables to retrieve (int)
+        @type int
+        @param filterList list of variable types to filter out
+        @type list of str
+        @param var list encoded name of variable to retrieve
+        @type str
+        @param framenr framenumber of the variables to retrieve
+        @type int
         """
         self.debuggerInterface.remoteClientVariable(
             scope, filterList, var, framenr, self.__maxVariableSize)

eric ide

mercurial