eric6/Documentation/Source/eric6.DebugClients.Python.DebugClientBase.html

changeset 7989
a21d673a8f99
parent 7986
2971d5d19951
child 8215
fc5d68a6889e
equal deleted inserted replaced
7988:c4c17121eff8 7989:a21d673a8f99
322 <dd> 322 <dd>
323 name of directory discovery was started at 323 name of directory discovery was started at
324 </dd> 324 </dd>
325 </dl> 325 </dl>
326 <dl> 326 <dl>
327 <dt>Returns:</dt> 327 <dt>Return:</dt>
328 <dd> 328 <dd>
329 list of tuples containing the test case ID, a short description 329 list of tuples containing the test case ID, a short description
330 and the path of the test file name 330 and the path of the test file name
331 </dd> 331 </dd>
332 </dl> 332 </dl>
342 342
343 <p> 343 <p>
344 Private method to determine the clients capabilities. 344 Private method to determine the clients capabilities.
345 </p> 345 </p>
346 <dl> 346 <dl>
347 <dt>Returns:</dt> 347 <dt>Return:</dt>
348 <dd> 348 <dd>
349 client capabilities (integer) 349 client capabilities (integer)
350 </dd> 350 </dd>
351 </dl> 351 </dl>
352 <a NAME="DebugClientBase.__compileCommand" ID="DebugClientBase.__compileCommand"></a> 352 <a NAME="DebugClientBase.__compileCommand" ID="DebugClientBase.__compileCommand"></a>
370 <dd> 370 <dd>
371 kind of code to be generated (exec or eval) 371 kind of code to be generated (exec or eval)
372 </dd> 372 </dd>
373 </dl> 373 </dl>
374 <dl> 374 <dl>
375 <dt>Returns:</dt> 375 <dt>Return:</dt>
376 <dd> 376 <dd>
377 compiled code object (None in case of errors) 377 compiled code object (None in case of errors)
378 </dd> 378 </dd>
379 </dl> 379 </dl>
380 <a NAME="DebugClientBase.__compileFileSource" ID="DebugClientBase.__compileFileSource"></a> 380 <a NAME="DebugClientBase.__compileFileSource" ID="DebugClientBase.__compileFileSource"></a>
394 <dd> 394 <dd>
395 kind of code to be generated (exec or eval) 395 kind of code to be generated (exec or eval)
396 </dd> 396 </dd>
397 </dl> 397 </dl>
398 <dl> 398 <dl>
399 <dt>Returns:</dt> 399 <dt>Return:</dt>
400 <dd> 400 <dd>
401 compiled code object (None in case of errors) 401 compiled code object (None in case of errors)
402 </dd> 402 </dd>
403 </dl> 403 </dl>
404 <a NAME="DebugClientBase.__completionList" ID="DebugClientBase.__completionList"></a> 404 <a NAME="DebugClientBase.__completionList" ID="DebugClientBase.__completionList"></a>
476 <dd> 476 <dd>
477 variable text 477 variable text
478 </dd> 478 </dd>
479 </dl> 479 </dl>
480 <dl> 480 <dl>
481 <dt>Returns:</dt> 481 <dt>Return:</dt>
482 <dd> 482 <dd>
483 tuple containing the variable text without indicators and the 483 tuple containing the variable text without indicators and the
484 indicator string 484 indicator string
485 </dd> 485 </dd>
486 </dl> 486 </dl>
507 <dd> 507 <dd>
508 type of the Qt variable to be formatted (string) 508 type of the Qt variable to be formatted (string)
509 </dd> 509 </dd>
510 </dl> 510 </dl>
511 <dl> 511 <dl>
512 <dt>Returns:</dt> 512 <dt>Return:</dt>
513 <dd> 513 <dd>
514 A tuple consisting of a list of formatted variables. Each 514 A tuple consisting of a list of formatted variables. Each
515 variable entry is a tuple of three elements, the variable name, 515 variable entry is a tuple of three elements, the variable name,
516 its type and value. 516 its type and value.
517 </dd> 517 </dd>
549 Variables are only added to the list, if their type is not 549 Variables are only added to the list, if their type is not
550 contained in the filter list. 550 contained in the filter list.
551 </dd> 551 </dd>
552 </dl> 552 </dl>
553 <dl> 553 <dl>
554 <dt>Returns:</dt> 554 <dt>Return:</dt>
555 <dd> 555 <dd>
556 A tuple consisting of a list of formatted variables. Each 556 A tuple consisting of a list of formatted variables. Each
557 variable entry is a tuple of three elements, the variable name, 557 variable entry is a tuple of three elements, the variable name,
558 its type and value. 558 its type and value.
559 </dd> 559 </dd>
619 <dd> 619 <dd>
620 entry to be put first in sys.path (string) 620 entry to be put first in sys.path (string)
621 </dd> 621 </dd>
622 </dl> 622 </dl>
623 <dl> 623 <dl>
624 <dt>Returns:</dt> 624 <dt>Return:</dt>
625 <dd> 625 <dd>
626 path list for use as sys.path (list of strings) 626 path list for use as sys.path (list of strings)
627 </dd> 627 </dd>
628 </dl> 628 </dl>
629 <a NAME="DebugClientBase.__interact" ID="DebugClientBase.__interact"></a> 629 <a NAME="DebugClientBase.__interact" ID="DebugClientBase.__interact"></a>
653 <dd> 653 <dd>
654 hostname of the debug server (string) 654 hostname of the debug server (string)
655 </dd> 655 </dd>
656 </dl> 656 </dl>
657 <dl> 657 <dl>
658 <dt>Returns:</dt> 658 <dt>Return:</dt>
659 <dd> 659 <dd>
660 IP address (string) 660 IP address (string)
661 </dd> 661 </dd>
662 </dl> 662 </dl>
663 <a NAME="DebugClientBase.__setCoding" ID="DebugClientBase.__setCoding"></a> 663 <a NAME="DebugClientBase.__setCoding" ID="DebugClientBase.__setCoding"></a>
731 <dd> 731 <dd>
732 filename (string) 732 filename (string)
733 </dd> 733 </dd>
734 </dl> 734 </dl>
735 <dl> 735 <dl>
736 <dt>Returns:</dt> 736 <dt>Return:</dt>
737 <dd> 737 <dd>
738 the converted filename (string) 738 the converted filename (string)
739 </dd> 739 </dd>
740 </dl> 740 </dl>
741 <a NAME="DebugClientBase.close" ID="DebugClientBase.close"></a> 741 <a NAME="DebugClientBase.close" ID="DebugClientBase.close"></a>
816 816
817 <p> 817 <p>
818 Public method to return the current coding. 818 Public method to return the current coding.
819 </p> 819 </p>
820 <dl> 820 <dl>
821 <dt>Returns:</dt> 821 <dt>Return:</dt>
822 <dd> 822 <dd>
823 codec name (string) 823 codec name (string)
824 </dd> 824 </dd>
825 </dl> 825 </dl>
826 <a NAME="DebugClientBase.getRunning" ID="DebugClientBase.getRunning"></a> 826 <a NAME="DebugClientBase.getRunning" ID="DebugClientBase.getRunning"></a>
829 829
830 <p> 830 <p>
831 Public method to return the main script we are currently running. 831 Public method to return the main script we are currently running.
832 </p> 832 </p>
833 <dl> 833 <dl>
834 <dt>Returns:</dt> 834 <dt>Return:</dt>
835 <dd> 835 <dd>
836 flag indicating a running debug session (boolean) 836 flag indicating a running debug session (boolean)
837 </dd> 837 </dd>
838 </dl> 838 </dl>
839 <a NAME="DebugClientBase.handleJsonCommand" ID="DebugClientBase.handleJsonCommand"></a> 839 <a NAME="DebugClientBase.handleJsonCommand" ID="DebugClientBase.handleJsonCommand"></a>
867 <dd> 867 <dd>
868 Flag indicating echoing of the input (boolean) 868 Flag indicating echoing of the input (boolean)
869 </dd> 869 </dd>
870 </dl> 870 </dl>
871 <dl> 871 <dl>
872 <dt>Returns:</dt> 872 <dt>Return:</dt>
873 <dd> 873 <dd>
874 the entered string 874 the entered string
875 </dd> 875 </dd>
876 </dl> 876 </dl>
877 <a NAME="DebugClientBase.main" ID="DebugClientBase.main"></a> 877 <a NAME="DebugClientBase.main" ID="DebugClientBase.main"></a>
916 <dd> 916 <dd>
917 file like object that has data to be read 917 file like object that has data to be read
918 </dd> 918 </dd>
919 </dl> 919 </dl>
920 <dl> 920 <dl>
921 <dt>Returns:</dt> 921 <dt>Return:</dt>
922 <dd> 922 <dd>
923 flag indicating an error condition 923 flag indicating an error condition
924 </dd> 924 </dd>
925 </dl> 925 </dl>
926 <dl> 926 <dl>
950 <dd> 950 <dd>
951 arguments being passed to func 951 arguments being passed to func
952 </dd> 952 </dd>
953 </dl> 953 </dl>
954 <dl> 954 <dl>
955 <dt>Returns:</dt> 955 <dt>Return:</dt>
956 <dd> 956 <dd>
957 result of the function call 957 result of the function call
958 </dd> 958 </dd>
959 </dl> 959 </dl>
960 <a NAME="DebugClientBase.sendCallTrace" ID="DebugClientBase.sendCallTrace"></a> 960 <a NAME="DebugClientBase.sendCallTrace" ID="DebugClientBase.sendCallTrace"></a>
1182 <dd> 1182 <dd>
1183 name of the script to check 1183 name of the script to check
1184 </dd> 1184 </dd>
1185 </dl> 1185 </dl>
1186 <dl> 1186 <dl>
1187 <dt>Returns:</dt> 1187 <dt>Return:</dt>
1188 <dd> 1188 <dd>
1189 flag indicating eligibility 1189 flag indicating eligibility
1190 </dd> 1190 </dd>
1191 </dl> 1191 </dl>
1192 <dl> 1192 <dl>
1301 <dd> 1301 <dd>
1302 name of a module to be executed as a script 1302 name of a module to be executed as a script
1303 </dd> 1303 </dd>
1304 </dl> 1304 </dl>
1305 <dl> 1305 <dl>
1306 <dt>Returns:</dt> 1306 <dt>Return:</dt>
1307 <dd> 1307 <dd>
1308 exit code of the debugged program 1308 exit code of the debugged program
1309 </dd> 1309 </dd>
1310 </dl> 1310 </dl>
1311 <dl> 1311 <dl>
1364 <dd> 1364 <dd>
1365 prompt to be shown 1365 prompt to be shown
1366 </dd> 1366 </dd>
1367 </dl> 1367 </dl>
1368 <dl> 1368 <dl>
1369 <dt>Returns:</dt> 1369 <dt>Return:</dt>
1370 <dd> 1370 <dd>
1371 result of the input() call 1371 result of the input() call
1372 </dd> 1372 </dd>
1373 </dl> 1373 </dl>
1374 <dl> 1374 <dl>

eric ide

mercurial