1129 """ |
1129 """ |
1130 self.__sendJsonCommand("RequestCallTrace", { |
1130 self.__sendJsonCommand("RequestCallTrace", { |
1131 "enable": on, |
1131 "enable": on, |
1132 }, debuggerId) |
1132 }, debuggerId) |
1133 |
1133 |
|
1134 def remoteNoDebugList(self, debuggerId, noDebugList): |
|
1135 """ |
|
1136 Public method to set a list of programs not to be debugged. |
|
1137 |
|
1138 The programs given in the list will not be run under the control |
|
1139 of the multi process debugger. |
|
1140 |
|
1141 @param debuggerId ID of the debugger backend |
|
1142 @type str |
|
1143 @param noDebugList list of Python programs not to be debugged |
|
1144 @type list of str |
|
1145 """ |
|
1146 self.__sendJsonCommand("RequestSetNoDebugList", { |
|
1147 "noDebug": noDebugList, |
|
1148 }, debuggerId) |
|
1149 |
1134 def remoteBanner(self): |
1150 def remoteBanner(self): |
1135 """ |
1151 """ |
1136 Public slot to get the banner info of the remote client. |
1152 Public slot to get the banner info of the remote client. |
1137 """ |
1153 """ |
1138 self.__sendJsonCommand("RequestBanner", {}) |
1154 self.__sendJsonCommand("RequestBanner", {}) |