AnimalというクラスとDogというサブクラスがあるとします。DogクラスからAnimalのUnicode定義にアクセスするにはどうすればよいですか?
class Animal:
def __unicode__(self):
return 'animal'
class Dog(Animal):
def __unicode__(self):
return 'this %s is a dog' % (I want to get the Animal's __unicode__ here)