1123 |
1123 |
1124 @param on flag indicating to enable the call trace function (boolean) |
1124 @param on flag indicating to enable the call trace function (boolean) |
1125 """ |
1125 """ |
1126 self.debuggerInterface.setCallTraceEnabled(on) |
1126 self.debuggerInterface.setCallTraceEnabled(on) |
1127 |
1127 |
1128 def remoteEval(self, arg): |
|
1129 """ |
|
1130 Public method to evaluate arg in the current context of the debugged |
|
1131 program. |
|
1132 |
|
1133 @param arg the arguments to evaluate (string) |
|
1134 """ |
|
1135 self.debuggerInterface.remoteEval(arg) |
|
1136 |
|
1137 def remoteExec(self, stmt): |
|
1138 """ |
|
1139 Public method to execute stmt in the current context of the debugged |
|
1140 program. |
|
1141 |
|
1142 @param stmt statement to execute (string) |
|
1143 """ |
|
1144 self.debuggerInterface.remoteExec(stmt) |
|
1145 |
|
1146 def remoteBanner(self): |
1128 def remoteBanner(self): |
1147 """ |
1129 """ |
1148 Public slot to get the banner info of the remote client. |
1130 Public slot to get the banner info of the remote client. |
1149 """ |
1131 """ |
1150 self.debuggerInterface.remoteBanner() |
1132 self.debuggerInterface.remoteBanner() |