What is the new way of checking "callable" methods in python 3.xx
- by ssaboum
Hi,
I was studying introspection in Python, and as i was getting through basic examples, i found out that the "callable" built-in function is not longer available in Python 3.1.
How can i check if a method is callable now ?
Thank you