Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c186b237993ac0c1c6ee1a195754702cc01625d7 authored by Georg Brandl on 02 March 2014, 08:19:03 UTC
Bump to 3.3.5rc2.
Tip revision: c186b23
Delegator.py
class Delegator:

    # The cache is only used to be able to change delegates!

    def __init__(self, delegate=None):
        self.delegate = delegate
        self.__cache = set()

    def __getattr__(self, name):
        attr = getattr(self.delegate, name) # May raise AttributeError
        setattr(self, name, attr)
        self.__cache.add(name)
        return attr

    def resetcache(self):
        for key in self.__cache:
            try:
                delattr(self, key)
            except AttributeError:
                pass
        self.__cache.clear()

    def setdelegate(self, delegate):
        self.resetcache()
        self.delegate = delegate
back to top