What Python builtin returns <type 'function'>?
>>> type(lambda: None)
<type 'function'>
Is there way of avoiding creating this lambda function, in order to get the type of functions in general?
See http://www.finalcog.com/python-memoise-memoize-function-type for more details.
Thanks,
Chris.