Is there any syntax for using a decorator on a lambda function in Python? Example:
def simpledecorator(f): def new_f(): print \"Using a decorat
f = anotherdecorator(lambda x: x * 2)