in reply to Re^2: regular expression to extract exception/errors in python code base
in thread regular expression to extract exception/errors in python code base

This promises to be the closest that I was looking at

  • Comment on Re^3: regular expression to extract exception/errors in python code base

Replies are listed 'Best First'.
Re^4: regular expression to extract exception/errors in python code base
by MonkOfAnotherSect (Sexton) on Sep 13, 2012 at 02:03 UTC
    Asab,

    I suspect that you're asking the wrong question. Grepping like that you'll miss anything uncaught but raised from standard libraries and code, etc. Suggest for python questions that you post a sufficiently detailed description/example of what you actually want to achieve on python-tutor or python-list (aka comp.lang.python). The correct answer probably involves the traceback module.

    -T.