<div>Hello,</div><div><br></div><div>I'm testing Python's class abstractness and inheritance. Since interface doesn't exist, I will</div><div>like to test how to have access to a superclass method from a subclass without necessary</div>

<div>invoking or overriding the superclass method in its subclass.</div><div><br></div><div>>>> class Equipment(object):</div><div>...     def fault():</div><div>...             return "fault"</div><div>

...</div><div>>>> Equipment().__class__</div><div><class '__main__.Equipment'></div><div>>>> class Vehicle(Equipment):</div><div>...      # Find out here if Vehicle has access to fault</div>

<div><br></div><div>I want to know whether Vehicle has access to Equipment's fault() method. </div><div>Just want to know if it's there(that a vehicle can also develop a fault).</div><div><br></div><div>I know I can override it, but I want to know if I can use it directly without overriding it.</div>

-- <br>Odeyemi 'Kayode O.<br><a href="http://www.sinati.com" target="_blank">http://www.sinati.com</a>. t: @charyorde<br><br>