In python, what is super(classItSelf) doing?
I have a project to work on has code such as this:
class Tele(TcInterface):
    _signal = signal.SIGUSR1
    def __init__(self):
        super(Tele, self).__init__()
        self._c = None
What is this line doing?
super(Tele, self).__init__()
I am a cpp java code, Really got confused about python stuff.
 
     
     
    