src/eric7/Debugger/DebuggerInterfacePython.py

branch
eric7
changeset 10417
c6011e501282
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
diff -r 5d807e997391 -r c6011e501282 src/eric7/Debugger/DebuggerInterfacePython.py
--- a/src/eric7/Debugger/DebuggerInterfacePython.py	Sat Dec 16 17:52:02 2023 +0100
+++ b/src/eric7/Debugger/DebuggerInterfacePython.py	Sun Dec 17 17:15:19 2023 +0100
@@ -790,11 +790,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
@@ -820,7 +820,7 @@
             {
                 "workdir": wd,
                 "filename": fn,
-                "argv": Utilities.parseOptionString(argv),
+                "argv": argv,
                 "traceInterpreter": traceInterpreter,
                 "multiprocess": enableMultiprocess,
                 "reportAllExceptions": reportAllExceptions,
@@ -832,11 +832,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
         """
         self.__scriptName = os.path.abspath(fn)
@@ -848,7 +848,7 @@
             {
                 "workdir": wd,
                 "filename": fn,
-                "argv": Utilities.parseOptionString(argv),
+                "argv": argv,
             },
             self.__mainDebugger,
         )
@@ -857,11 +857,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
@@ -876,7 +876,7 @@
             {
                 "workdir": wd,
                 "filename": fn,
-                "argv": Utilities.parseOptionString(argv),
+                "argv": argv,
                 "erase": erase,
             },
             self.__mainDebugger,
@@ -886,11 +886,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
@@ -905,7 +905,7 @@
             {
                 "workdir": wd,
                 "filename": fn,
-                "argv": Utilities.parseOptionString(argv),
+                "argv": argv,
                 "erase": erase,
             },
             self.__mainDebugger,
@@ -917,7 +917,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.__sendJsonCommand(
@@ -993,7 +993,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
         """
         self.__isStepCommand = False
@@ -1011,7 +1011,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
         """
         self.__sendJsonCommand(
@@ -1032,7 +1032,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
@@ -1063,7 +1063,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
@@ -1088,7 +1088,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
@@ -1187,7 +1187,7 @@
 
         @param debuggerId ID of the debugger backend
         @type str
-        @param inputString the raw input
+        @param inputString raw input
         @type str
         """
         self.__sendJsonCommand(
@@ -1241,7 +1241,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
@@ -1271,7 +1271,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
@@ -1311,7 +1311,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
@@ -1384,7 +1384,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
         """
         self.__sendJsonCommand(

eric ide

mercurial