-
When I run the attached file in debug mode and try to interrupt the evaluation (by selecting a thread in the upper left panel and pressing the 'suspend' button), nothing happens at all.
2009-08-07 18:14:22 UTC in Pydev for Eclipse
-
If I try to open the Search -> Search -> Pydev Search -> Replace dialog, I get the attached error.
2009-08-07 18:10:19 UTC in Pydev for Eclipse
-
Seems that sf has eaten the indentation in the run1 and run2 functions... JFTR record, I tested it with correct indentation.
2009-07-29 14:10:07 UTC in Pydev for Eclipse
-
I'm afraid this does not seem to work for me. Pressing the pause button (you mean the button labelled 'suspend' between 'resume' and 'terminate', right?) does not seem to have any effect at all. Could you try it with the following testcase?
import threading
import time
lock = threading.RLock()
def run1():
print 'Thread 1 acquiring lock...'
lock.acquire()
print 'Thread 1...
2009-07-29 14:08:59 UTC in Pydev for Eclipse
-
Hello,
I have a program that hangs at some point. Is there a way to interrupt the evaluation and go into debugging mode to see where it got stuck?
Randomly setting breakpoints (or debug messages) to slowly narrow down this point seems like a very uneccessarily inconvenience.
2009-07-27 14:59:32 UTC in Pydev for Eclipse
-
It would be nice if there was a convenient method to run only a single test from a test file.
2009-06-10 03:23:21 UTC in Pydev for Eclipse