src/eric7/Documentation/Source/eric7.DebugClients.Python.DebugClientBase.html

branch
eric7
changeset 10321
4a017fdf316f
parent 10289
490388ca210c
child 10417
c6011e501282
equal deleted inserted replaced
10320:ff28050f5dec 10321:4a017fdf316f
965 response 965 response
966 </dd> 966 </dd>
967 </dl> 967 </dl>
968 <a NAME="DebugClientBase.sendPassiveStartup" ID="DebugClientBase.sendPassiveStartup"></a> 968 <a NAME="DebugClientBase.sendPassiveStartup" ID="DebugClientBase.sendPassiveStartup"></a>
969 <h4>DebugClientBase.sendPassiveStartup</h4> 969 <h4>DebugClientBase.sendPassiveStartup</h4>
970 <b>sendPassiveStartup</b>(<i>filename, exceptions</i>) 970 <b>sendPassiveStartup</b>(<i>filename, reportAllExceptions</i>)
971 971
972 <p> 972 <p>
973 Public method to send the passive start information. 973 Public method to send the passive start information.
974 </p> 974 </p>
975 <dl> 975 <dl>
976 976
977 <dt><i>filename</i> (str)</dt> 977 <dt><i>filename</i> (str)</dt>
978 <dd> 978 <dd>
979 name of the script 979 name of the script
980 </dd> 980 </dd>
981 <dt><i>exceptions</i> (bool)</dt> 981 <dt><i>reportAllExceptions</i> (bool)</dt>
982 <dd> 982 <dd>
983 flag to enable exception reporting of the IDE 983 flag to enable reporting of all exceptions
984 </dd> 984 </dd>
985 </dl> 985 </dl>
986 <a NAME="DebugClientBase.sendResponseLine" ID="DebugClientBase.sendResponseLine"></a> 986 <a NAME="DebugClientBase.sendResponseLine" ID="DebugClientBase.sendResponseLine"></a>
987 <h4>DebugClientBase.sendResponseLine</h4> 987 <h4>DebugClientBase.sendResponseLine</h4>
988 <b>sendResponseLine</b>(<i>stack, threadName</i>) 988 <b>sendResponseLine</b>(<i>stack, threadName</i>)
1087 bool 1087 bool
1088 </dd> 1088 </dd>
1089 </dl> 1089 </dl>
1090 <a NAME="DebugClientBase.startDebugger" ID="DebugClientBase.startDebugger"></a> 1090 <a NAME="DebugClientBase.startDebugger" ID="DebugClientBase.startDebugger"></a>
1091 <h4>DebugClientBase.startDebugger</h4> 1091 <h4>DebugClientBase.startDebugger</h4>
1092 <b>startDebugger</b>(<i>filename=None, host=None, port=None, enableTrace=True, exceptions=True, tracePython=False, redirect=True, passive=True, multiprocessSupport=False, </i>) 1092 <b>startDebugger</b>(<i>filename=None, host=None, port=None, enableTrace=True, reportAllExceptions=False, tracePython=False, redirect=True, passive=True, multiprocessSupport=False, </i>)
1093 1093
1094 <p> 1094 <p>
1095 Public method used to start the remote debugger. 1095 Public method used to start the remote debugger.
1096 </p> 1096 </p>
1097 <dl> 1097 <dl>
1110 </dd> 1110 </dd>
1111 <dt><i>enableTrace</i> (bool)</dt> 1111 <dt><i>enableTrace</i> (bool)</dt>
1112 <dd> 1112 <dd>
1113 flag to enable the tracing function 1113 flag to enable the tracing function
1114 </dd> 1114 </dd>
1115 <dt><i>exceptions</i> (bool)</dt> 1115 <dt><i>reportAllExceptions</i> (bool)</dt>
1116 <dd> 1116 <dd>
1117 flag to enable exception reporting of the IDE 1117 flag indicating to report all exceptions
1118 instead of unhandled exceptions only
1118 </dd> 1119 </dd>
1119 <dt><i>tracePython</i> (bool)</dt> 1120 <dt><i>tracePython</i> (bool)</dt>
1120 <dd> 1121 <dd>
1121 flag to enable tracing into the Python library 1122 flag to enable tracing into the Python library
1122 </dd> 1123 </dd>
1135 debugging support 1136 debugging support
1136 </dd> 1137 </dd>
1137 </dl> 1138 </dl>
1138 <a NAME="DebugClientBase.startProgInDebugger" ID="DebugClientBase.startProgInDebugger"></a> 1139 <a NAME="DebugClientBase.startProgInDebugger" ID="DebugClientBase.startProgInDebugger"></a>
1139 <h4>DebugClientBase.startProgInDebugger</h4> 1140 <h4>DebugClientBase.startProgInDebugger</h4>
1140 <b>startProgInDebugger</b>(<i>progargs, wd="", host=None, port=None, exceptions=True, tracePython=False, redirect=True, passive=True, multiprocessSupport=False, callTraceOptimization=False, codeStr="", scriptModule="", </i>) 1141 <b>startProgInDebugger</b>(<i>progargs, wd="", host=None, port=None, tracePython=False, redirect=True, passive=True, multiprocessSupport=False, reportAllExceptions=False, callTraceOptimization=False, codeStr="", scriptModule="", </i>)
1141 1142
1142 <p> 1143 <p>
1143 Public method used to start the remote debugger. 1144 Public method used to start the remote debugger.
1144 </p> 1145 </p>
1145 <dl> 1146 <dl>
1157 hostname of the debug server 1158 hostname of the debug server
1158 </dd> 1159 </dd>
1159 <dt><i>port</i> (int)</dt> 1160 <dt><i>port</i> (int)</dt>
1160 <dd> 1161 <dd>
1161 portnumber of the debug server 1162 portnumber of the debug server
1162 </dd>
1163 <dt><i>exceptions</i> (bool)</dt>
1164 <dd>
1165 flag to enable exception reporting of the IDE
1166 </dd> 1163 </dd>
1167 <dt><i>tracePython</i> (bool)</dt> 1164 <dt><i>tracePython</i> (bool)</dt>
1168 <dd> 1165 <dd>
1169 flag to enable tracing into the Python library 1166 flag to enable tracing into the Python library
1170 </dd> 1167 </dd>
1179 </dd> 1176 </dd>
1180 <dt><i>multiprocessSupport</i> (bool)</dt> 1177 <dt><i>multiprocessSupport</i> (bool)</dt>
1181 <dd> 1178 <dd>
1182 flag indicating to enable multiprocess 1179 flag indicating to enable multiprocess
1183 debugging support 1180 debugging support
1181 </dd>
1182 <dt><i>reportAllExceptions</i> (bool)</dt>
1183 <dd>
1184 flag indicating to report all exceptions instead
1185 of unhandled exceptions only
1184 </dd> 1186 </dd>
1185 <dt><i>callTraceOptimization</i> (bool)</dt> 1187 <dt><i>callTraceOptimization</i> (bool)</dt>
1186 <dd> 1188 <dd>
1187 flag indicating to speed up function/method 1189 flag indicating to speed up function/method
1188 call tracing 1190 call tracing

eric ide

mercurial