75 tracePython=False, redirect=True): |
75 tracePython=False, redirect=True): |
76 """ |
76 """ |
77 Module function used to start the remote debugger. |
77 Module function used to start the remote debugger. |
78 |
78 |
79 @keyparam enableTrace flag to enable the tracing function (boolean) |
79 @keyparam enableTrace flag to enable the tracing function (boolean) |
80 @keyparam exceptions flag to enable exception reporting of the IDE (boolean) |
80 @keyparam exceptions flag to enable exception reporting of the IDE |
81 @keyparam tracePython flag to enable tracing into the Python library (boolean) |
81 (boolean) |
82 @keyparam redirect flag indicating redirection of stdin, stdout and stderr (boolean) |
82 @keyparam tracePython flag to enable tracing into the Python library |
|
83 (boolean) |
|
84 @keyparam redirect flag indicating redirection of stdin, stdout and |
|
85 stderr (boolean) |
83 """ |
86 """ |
84 global debugger |
87 global debugger |
85 if debugger: |
88 if debugger: |
86 debugger.startDebugger(enableTrace=enableTrace, exceptions=exceptions, |
89 debugger.startDebugger(enableTrace=enableTrace, exceptions=exceptions, |
87 tracePython=tracePython, redirect=redirect) |
90 tracePython=tracePython, redirect=redirect) |