Sometimes I find myself in the situation where I want to execute several sequential commands like such:
try: foo(a, b) except Exception, e: baz(e) tr
You could use the with statement if you have python 2.5 or above:
from __future__ import with_statement import contextlib @contextlib.contextmanager def handler(): try: yield except Exception, e: baz(e)
Your example now becomes:
with handler(): foo(a, b) with handler(): bar(c, d)