How can I access a parent method using function over-riding in python? See example below:
class Parent:      
   def myMethod(self):
      print 'Calling parent method'
class Child(Parent):
   def myMethod(self):
      print 'Calling child method'
c = Child()        
c.myMethod()
Is this a proper function overriding solution?