Tagged Questions
0
votes
1answer
61 views
Where to set breakpoint in Django for a request (before being dispatched)?
Where is a good place to set a breakpoint in Django at the point where a page request comes in, but before the Django dispatcher has run?
I assume there's a loop in the Django web server (manage.py ...
2
votes
1answer
184 views
IPython - set a breakpoint in imported file
One can set a breakpoint in IPython + pdb like this:
run -d -b 150 file1.py
That would break the execution of file1.py at line 150.
Now, how can one set a break point in a file that is being ...
1
vote
2answers
275 views
pdb cannot break in another thread?
Consider this multi-threaded program:
import threading
class SomeThread(threading.Thread):
def run(self):
a = 1
print a
def main():
print 'hola'
someThread = SomeThread()
...
0
votes
2answers
373 views
Visual C++, breakpoints do not break
I have a project in Visual C++ 2010 (Win32 application, non-managed code) in which I'm experiencing a really strange behavior. I put a breakpoint and it simply does not break!
The clues:
A PDB file ...