Ne peut pas accéder à un parent membre de la variable en Python

J'essaye d'accéder à un parent variable membre d'une classe étendue. Mais l'exécution du code suivant...

class Mother(object):
    def __init__(self):
        self._haircolor = "Brown"

class Child(Mother):
    def __init__(self): 
        Mother.__init__(self)   
    def print_haircolor(self):
        print Mother._haircolor

c = Child()
c.print_haircolor()

Me met cette erreur:

AttributeError: type object 'Mother' has no attribute '_haircolor'

Ce que je fais mal?

InformationsquelleAutor Yarin | 2012-04-08