-
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
-
[Unfortunately I wasn't able to add a comment to bug 2789741 ]
1. Change into the directory containing the VIDEO_TS directory, open OGMRip
2. Try to open this directory in OGMRip: click on "Open", "Browse into the directory that contains VIDEO_TS (you should already be in there), click on "Open" --> nothing happens, the open dialog stays open.
3. Quit OGMRip, change into a different...
2009-05-10 16:34:14 UTC in OGMRip
-
1. Change into the directory containing the VIDEO_TS directory, open OGMRip
2. Try to open this directory in OGMRip --> nothing happens
3. Quit OGMRip, change into a different directory, start OGMRip from there
4. Try to open the same directory again --> it works.
2009-05-10 15:46:57 UTC in OGMRip
-
In OGMRip, I have configured a x264 profile with user defined options subq=7 and frameref=5. Yet the options that are passed to mencoder (as shown by ps) are subq=0:frameref=0.
2009-05-10 15:44:20 UTC in OGMRip
-
Hello,
I have a strange problem with pexpect:
$ cat test.py
#!/usr/bin/python
import pexpect
child = pexpect.spawn("./test.pl")
while True:
try:
line = raw_input()
except EOFError:
break
child.sendline(line)
print child.readline().rstrip("\r\n")
child.close()
$ cat test.pl
#!/usr/bin/perl
# Replace all digits by __
while () {.
2009-04-01 02:31:23 UTC in Pexpect - Pure Python Expect-like module