Pamięć podręczna obiektów Pythona

Próbowałem trochę kodu, ale wydaje się, że powoduje problemy:

class Page:
    cache = []


    """ Return cached object """
    def __getCache(self, title):
        for o in Page.cache:
            if o.__searchTerm == title or o.title == title:
                return o
        return None


    """ Initilize the class and start processing """
    def __init__(self, title, api=None):
        o = self.__getCache(title)
        if o:
            self = o
            return
        Page.cache.append(self)

        # Other init code
        self.__searchTerm = title
        self.title = self.someFunction(title)

Potem próbuję:

a = Page('test')
b = Page('test')

print a.title # works
print b.title # AttributeError: Page instance has no attribute 'title'

Co jest nie tak z tym kawałkiem kodu? Dlaczego to nie zadziała? Czy istnieje sposób, aby to działało? Jeśli nie, jak łatwo i przejrzyście przejść do obiektów buforujących użytkownika końcowego?

questionAnswers(3)

yourAnswerToTheQuestion