51 <td><a href="#DebugClientFork">DebugClientFork</a></td> |
51 <td><a href="#DebugClientFork">DebugClientFork</a></td> |
52 <td>Replacement for the standard os.fork().</td> |
52 <td>Replacement for the standard os.fork().</td> |
53 </tr> |
53 </tr> |
54 <tr> |
54 <tr> |
55 <td><a href="#DebugClientInput">DebugClientInput</a></td> |
55 <td><a href="#DebugClientInput">DebugClientInput</a></td> |
56 <td>Replacement for the standard input builtin.</td> |
56 <td>Replacement for the standard input() builtin (Python 2).</td> |
57 </tr> |
57 </tr> |
58 <tr> |
58 <tr> |
59 <td><a href="#DebugClientRawInput">DebugClientRawInput</a></td> |
59 <td><a href="#DebugClientRawInput">DebugClientRawInput</a></td> |
60 <td>Replacement for the standard raw_input builtin.</td> |
60 <td>Replacement for the standard raw_input() builtin (Python 2) and the standard input() builtin (Python 3).</td> |
61 </tr> |
61 </tr> |
62 <tr> |
62 <tr> |
63 <td><a href="#DebugClientSetRecursionLimit">DebugClientSetRecursionLimit</a></td> |
63 <td><a href="#DebugClientSetRecursionLimit">DebugClientSetRecursionLimit</a></td> |
64 <td>Replacement for the standard sys.setrecursionlimit(limit).</td> |
64 <td>Replacement for the standard sys.setrecursionlimit(limit).</td> |
65 </tr> |
65 </tr> |
1259 <div align="right"><a href="#top">Up</a></div> |
1259 <div align="right"><a href="#top">Up</a></div> |
1260 <hr /> |
1260 <hr /> |
1261 <hr /> |
1261 <hr /> |
1262 <a NAME="DebugClientInput" ID="DebugClientInput"></a> |
1262 <a NAME="DebugClientInput" ID="DebugClientInput"></a> |
1263 <h2>DebugClientInput</h2> |
1263 <h2>DebugClientInput</h2> |
1264 <b>DebugClientInput</b>(<i>prompt="", echo=True</i>) |
1264 <b>DebugClientInput</b>(<i>prompt=""</i>) |
1265 |
1265 |
1266 <p> |
1266 <p> |
1267 Replacement for the standard input builtin. |
1267 Replacement for the standard input() builtin (Python 2). |
1268 </p> |
1268 </p> |
1269 <p> |
1269 <p> |
1270 This function works with the split debugger. |
1270 This function works with the split debugger. |
1271 </p> |
1271 </p> |
1272 <dl> |
1272 <dl> |
1273 |
1273 |
1274 <dt><i>prompt</i></dt> |
1274 <dt><i>prompt</i> (str)</dt> |
1275 <dd> |
1275 <dd> |
1276 prompt to be shown (string) |
1276 prompt to be shown |
1277 </dd> |
|
1278 <dt><i>echo</i></dt> |
|
1279 <dd> |
|
1280 flag indicating to echo the output (boolean) |
|
1281 </dd> |
1277 </dd> |
1282 </dl> |
1278 </dl> |
1283 <dl> |
1279 <dl> |
1284 <dt>Returns:</dt> |
1280 <dt>Returns:</dt> |
1285 <dd> |
1281 <dd> |
1286 result of the input() call |
1282 result of the input() call |
|
1283 </dd> |
|
1284 </dl> |
|
1285 <dl> |
|
1286 <dt>Return Type:</dt> |
|
1287 <dd> |
|
1288 str |
1287 </dd> |
1289 </dd> |
1288 </dl> |
1290 </dl> |
1289 <div align="right"><a href="#top">Up</a></div> |
1291 <div align="right"><a href="#top">Up</a></div> |
1290 <hr /> |
1292 <hr /> |
1291 <hr /> |
1293 <hr /> |
1292 <a NAME="DebugClientRawInput" ID="DebugClientRawInput"></a> |
1294 <a NAME="DebugClientRawInput" ID="DebugClientRawInput"></a> |
1293 <h2>DebugClientRawInput</h2> |
1295 <h2>DebugClientRawInput</h2> |
1294 <b>DebugClientRawInput</b>(<i>prompt="", echo=True</i>) |
1296 <b>DebugClientRawInput</b>(<i>prompt="", echo=True</i>) |
1295 |
1297 |
1296 <p> |
1298 <p> |
1297 Replacement for the standard raw_input builtin. |
1299 Replacement for the standard raw_input() builtin (Python 2) and |
|
1300 the standard input() builtin (Python 3). |
1298 </p> |
1301 </p> |
1299 <p> |
1302 <p> |
1300 This function works with the split debugger. |
1303 This function works with the split debugger. |
1301 </p> |
1304 </p> |
1302 <dl> |
1305 <dl> |
1303 |
1306 |
1304 <dt><i>prompt</i></dt> |
1307 <dt><i>prompt</i> (str)</dt> |
1305 <dd> |
1308 <dd> |
1306 prompt to be shown. (string) |
1309 prompt to be shown |
1307 </dd> |
1310 </dd> |
1308 <dt><i>echo</i></dt> |
1311 <dt><i>echo</i> (bool)</dt> |
1309 <dd> |
1312 <dd> |
1310 flag indicating echoing of the input (boolean) |
1313 flag indicating echoing of the input |
1311 </dd> |
1314 </dd> |
1312 </dl> |
1315 </dl> |
1313 <dl> |
1316 <dl> |
1314 <dt>Returns:</dt> |
1317 <dt>Returns:</dt> |
1315 <dd> |
1318 <dd> |
1316 result of the raw_input() call |
1319 result of the raw_input()/input() call |
|
1320 </dd> |
|
1321 </dl> |
|
1322 <dl> |
|
1323 <dt>Return Type:</dt> |
|
1324 <dd> |
|
1325 str |
1317 </dd> |
1326 </dd> |
1318 </dl> |
1327 </dl> |
1319 <div align="right"><a href="#top">Up</a></div> |
1328 <div align="right"><a href="#top">Up</a></div> |
1320 <hr /> |
1329 <hr /> |
1321 <hr /> |
1330 <hr /> |