Assuming I have class X, how can I check which of the base classes / classes and their base class / classes, etc.?
I use Eclipse with PyDev, and for Java, for example, you can type CTRL + T on the class name and see the hierarchy, for example:
java.lang.Object
java.lang.Number
java.lang.Integer
Is this possible for Python?
If this is not possible in Eclipse PyDev, where can I find this information?
ElenaT
source share