Have you got a python decorator that you really love? Post it here!
Here is my favorite, although since I have not known about the feature very long, it may change soon...
def debug(f):
"""
Decorator.
Function will enable debugging just for itself.
Won't change anything if debugging is already enabled.
"""
def decorator(*args,**kargs):
prevState = options['debug']
options['debug'] = True
f(*args,**kargs)
options['debug'] = prevState
decorator.__name__ = f.__name__
return decorator