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-trace.html 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. -- http://mail.python.org/mailman/listinfo/python-list