[PyKDE] eric3 debugging related questions - possibly feature requests

Detlev Offenbach detlev at die-offenbachs.de
Sun Jan 29 08:48:43 GMT 2006


Am Sonntag, 29. Januar 2006 04:41 schrieb Suleyman Karabuk:
> I ran into the following difficulties when debugging in Eric.
>
> 1) I start debugging, all the debugger control buttons become active (step,
> stop etc..). I select continue and the debugger runs until the first
> breakpoint. While the debugger runs, the control buttons disappear, and I
> have to wait until it hits the next breakpoint.
>
> However, sometimes a particular code segment takes long to run (by design),
> and I may want to stop the debugger and start over, or I may want to check
> some variables in the meantime. I cannot do that as it is. My only option
> to stop the debugger is to kill the process from the shell.
>
> If there is a way to do this within eric3 please let me know. Otherwise , I
> would like to add this to the wish list.

Just create a new breakpoint where you want it to stop next. You can do this 
while the program is still busy doing something. Once it stopped, you may 
inspect variables as already known. To restart it, just press the restart 
button.

>
> 2) Often times during debugging I need to isolate a few variables and
> follow their progress as I step through the code. As it is I can only
> filter out the variables I do not want to follow in the debug browser. In
> order to achieve what I want, I have to devise devilishly clever (or
> complicated) regular expressions to filter out all but the few I am
> interested.
>
> Is there a way to negate a regular expression in the debug window ? 

No.

> If so 
> please let me know how I can accomplish that. Otherwise here is another
> feature request.
>
> Please add another tab to the debug browser. In this new tab, I should be
> able to set the name of a variable (say as a regular expression) to add it
> to an isolated watch list. So the set function would work in the opposite
> way compared to the current one.

There is the possibility to set watchpoints. They work like breakpoints but 
are evaluated for every executed line of code. That means, if you are 
interested in a specific change of a variable (e.g. foo == "bar"), you can 
use this function. The variables of the frame the watchpoint fired are shown 
as usual.

>
> This feature would be very useful.
>
> Thanks for developing this great piece of software.
>
>
> ---------------------------------
>  Yahoo! Autos. Looking for a sweet ride? Get pricing, reviews, & more on
> new and used cars.

Regards,
Detlev
-- 
Detlev Offenbach
detlev at die-offenbachs.de




More information about the PyQt mailing list