/usr/share/doc/eric/README-passive-debugging.txt is in eric 6.0.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | README for passive mode debugging
eric6 provides the capability to debug programms using the passive
mode. In this mode it is possible to start the debugger separate from
the IDE. This may be done on a different computer as well. If the
debugger is started on a remote machine, it is your responsibility
to ensure, that the paths to the script to be debugged are identical
on both machines.
In order to enable passive mode debugging in the IDE choose the
debugger tab of the preferences dialog and enable the passive mode
debugging checkbox. You may change the default port as well. Please
be aware that you have to tell the debugger the port, if it is different to the
default value of 42424.
On the remote computer you have to have the debugger scripts installed.
Use DebugClient.py to debug normal scripts or DebugClientThreads.py
to debug multi threaded scripts. The debuggers know about the following
commandline switches.
-h <hostname> -- this specifies the hostname of the machine running the IDE.
-p <portnumber> -- this specifies the portnumber of the IDE.
-w <directory> -- this specifies the working directory to be used for the script
to be debugged.
-t -- this enables tracing into the Python library
-n -- this disables the redirection of stdin, stdout and stderr
-e -- this disables reporting of exceptions
--fork-child -- this tells the debugger to follow the child when forking
--fork-parent -- this tells the debugger to follow the parent when forking
The commandline parameters have to be followed by '--' (double dash),
the script to be debugged and its commandline parameters.
Example::
python DebugClient -h somehost -- myscript.py param1
After the execution of the debugger command, it connects to the IDE and
tells it the filename of the script being debugged. The IDE will try to load it
and the script will stop at the first line. After that you may set breakpoints,
step through your script and use all the debugging functions.
Note: The port and hostname may alternatively be set through the environment
variables ERICPORT and ERICHOST.
Please send bug reports, feature requests or contributions to eric bugs address
<eric-bugs@die-offenbachs.de> or using the buildt in bug reporting dialog.
|