Is there a way to test whether a variable holds a lambda? The context is I\'d like to check a type in a unit test:
lambda
self.assertEquals(lambda, type(my
There is no need to do any hacks, the built in inspect module handles it for you.
import inspect print inspect.isfunction(lambda x:x)