Comment

Peter Bengtsson

Is that not what you expect?

Parent comment

Me Me Me

Python 3.3 shell log: >>> def Foo(): return Foo >>> f = Foo() >>> f >>> callable(Foo) True >>> callable(Foo()) True >>> callable(f) True