Reputation: 4648
I was studying introspection in Python, and as I was getting through basic examples, I found out that the callable
built-in function is no longer available in Python 3.1.
How can I check if a method is callable now?
Thank you
Upvotes: 13
Views: 4252
Reputation: 231
The callable() builtin function from Py2.x was resurrected in python3.2.
Upvotes: 23