LorcanM wrote: > I use pdb under Linux to debug my Python code, as in: > > python -m pdb myprogram.py > > By default it does a postmortem of unhandled exceptions, is there a way > to get it to break on warnings? is python -m pdb -Werror myprogram.py what you're looking for ? </F>