Re: pdb question - spew out "steps" until crash needed

2007-09-09 Thread Lawrence D'Oliveiro
In message <[EMAIL PROTECTED]>, Paul Rubin wrote: > However, the malloc problem has probably already screwed things up > long before the application actually freezes. Your best bet is > to recompile Python with malloc debugging enabled and/or run Python > itself under a debugger. A simple thing

Re: pdb question - spew out "steps" until crash needed

2007-09-07 Thread Paul Rubin
James Stroud <[EMAIL PROTECTED]> writes: > How do I get pdb to just run my program and spew out what's happening > until it crashes/freezes? (This is a malloc error in a library > somewhere and I can't figure out where--no exceptions thrown, etc.) Maybe you want: http://docs.python.org/lib/module-

pdb question - spew out "steps" until crash needed

2007-09-07 Thread James Stroud
How do I get pdb to just run my program and spew out what's happening until it crashes/freezes? (This is a malloc error in a library somewhere and I can't figure out where--no exceptions thrown, etc.) I think I might need to live a lot longer to simply hit 's' [enter] until I get to the crash.