src/eric7/Debugger/DebuggerInterfaceNone.py

branch
eric7
changeset 10417
c6011e501282
parent 10321
4a017fdf316f
child 10439
21c28b0f9e41
--- a/src/eric7/Debugger/DebuggerInterfaceNone.py	Sat Dec 16 17:52:02 2023 +0100
+++ b/src/eric7/Debugger/DebuggerInterfaceNone.py	Sun Dec 17 17:15:19 2023 +0100
@@ -172,11 +172,11 @@
         """
         Public method to load a new program to debug.
 
-        @param fn the filename to debug
+        @param fn filename to debug
         @type str
-        @param argv the commandline arguments to pass to the program
-        @type str
-        @param wd the working directory for the program
+        @param argv list of command line arguments to pass to the program
+        @type list of str
+        @param wd working directory for the program
         @type str
         @param traceInterpreter flag indicating if the interpreter library
             should be traced as well
@@ -197,11 +197,11 @@
         """
         Public method to load a new program to run.
 
-        @param fn the filename to run
+        @param fn filename to run
         @type str
-        @param argv the commandline arguments to pass to the program
-        @type str
-        @param wd the working directory for the program
+        @param argv list of command line arguments to pass to the program
+        @type list of str
+        @param wd working directory for the program
         @type str
         """
         return
@@ -210,11 +210,11 @@
         """
         Public method to load a new program to collect coverage data.
 
-        @param fn the filename to run
+        @param fn filename to run
         @type str
-        @param argv the commandline arguments to pass to the program
-        @type str
-        @param wd the working directory for the program
+        @param argv list of command line arguments to pass to the program
+        @type list of str
+        @param wd working directory for the program
         @type str
         @param erase flag indicating that coverage info should be
             cleared first
@@ -226,11 +226,11 @@
         """
         Public method to load a new program to collect profiling data.
 
-        @param fn the filename to run
+        @param fn filename to run
         @type str
-        @param argv the commandline arguments to pass to the program
-        @type str
-        @param wd the working directory for the program
+        @param argv list of command line arguments to pass to the program
+        @type list of str
+        @param wd working directory for the program
         @type str
         @param erase flag indicating that timing info should be cleared
             first
@@ -244,7 +244,7 @@
 
         @param debuggerId ID of the debugger backend
         @type str
-        @param stmt the Python statement to execute.
+        @param stmt Python statement to execute.
         @type str
         """
         self.debugServer.signalClientStatement(False, "")
@@ -304,7 +304,7 @@
 
         @param debuggerId ID of the debugger backend
         @type str
-        @param line the new line, where execution should be continued to
+        @param line new line, where execution should be continued to
         @type int
         """
         return
@@ -315,7 +315,7 @@
 
         @param debuggerId ID of the debugger backend
         @type str
-        @param line the new line, where execution should be continued
+        @param line new line, where execution should be continued
         @type int
         """
         return
@@ -330,7 +330,7 @@
         @type str
         @param fn filename the breakpoint belongs to
         @type str
-        @param line linenumber of the breakpoint
+        @param line line number of the breakpoint
         @type int
         @param setBreakpoint flag indicating setting or resetting a breakpoint
         @type bool
@@ -349,7 +349,7 @@
         @type str
         @param fn filename the breakpoint belongs to
         @type str
-        @param line linenumber of the breakpoint
+        @param line line number of the breakpoint
         @type int
         @param enable flag indicating enabling or disabling a breakpoint
         @type bool
@@ -364,7 +364,7 @@
         @type str
         @param fn filename the breakpoint belongs to
         @type str
-        @param line linenumber of the breakpoint
+        @param line line number of the breakpoint
         @type int
         @param count number of occurrences to ignore
         @type int
@@ -419,7 +419,7 @@
 
         @param debuggerId ID of the debugger backend
         @type str
-        @param inputString the raw input
+        @param inputString raw input
         @type str
         """
         return
@@ -461,7 +461,7 @@
 
         @param debuggerId ID of the debugger backend
         @type str
-        @param scope the scope of the variables (0 = local, 1 = global)
+        @param scope scope of the variables (0 = local, 1 = global)
         @type int
         @param filterList list of variable types to filter out
         @type list of str
@@ -482,7 +482,7 @@
 
         @param debuggerId ID of the debugger backend
         @type str
-        @param scope the scope of the variables (0 = local, 1 = global)
+        @param scope scope of the variables (0 = local, 1 = global)
         @type int
         @param filterList list of variable types to filter out
         @type list of str
@@ -512,7 +512,7 @@
 
         @param debuggerId ID of the debugger backend
         @type str
-        @param scope the scope of the variables (0 = local, 1 = global)
+        @param scope scope of the variables (0 = local, 1 = global)
         @type int
         @param filterStr regexp string for variable names to filter out
         @type str
@@ -566,7 +566,7 @@
 
         @param debuggerId ID of the debugger backend
         @type str
-        @param text the text to be completed
+        @param text text to be completed
         @type str
         """
         return

eric ide

mercurial