Detecting the end of the program using bdb

2013-03-06 Thread Alexandre Zani
Hello all, I am attempting to write a remote debugger using bdb. One problem I am running into is that if I call self.set_next when on the last line of my program, I see this line printed: Exception AttributeError: "'NoneType' object has no attribute 'path'" in ig

bdb

2005-01-23 Thread jimbo
Hi, I am trying to sort how to best programmatically run the debugger on a program, and another way that I am trying to explore is by using the bdb module. There isn't any documentation for this and I have tried reading through the source, which includes an example/test at the end of bdb.

bdb question

2004-12-16 Thread Philippe C. Martin
Hi, I am trying to fix the following problem: 1) I have a gui thread + a background thread that intantiates a bdb child. 2) When I wish to quit in the middle of a debugged program, I roughly do the following: 2.a) set_quit() 2.b) kill my bdb child 2.c) stop my background thread I notice that