As in this question, I am trying to call the method of a base class from a derived class:
class Base(object):
    def __get(self):
        print "Base::get"
class Derived(Base):
    def __init__(self):
        super(Derived,self).__get()
d=Derived()
Why does this code return AttributeError: 'super' object has no attribute '_Derived__get'  ?
 
    