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