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