Mega Code Archive

 
Categories / Python Tutorial / Class
 

Specializing Inherited Methods

class Super:      def method(self):          print 'in Super.method'  class Sub(Super):      def method(self):                                 print 'starting Sub.method'                   Super.method(self)                            print 'ending Sub.method'  x = Super(  )               x.method(  )                x = Sub(  )                 x.method(  )