mercurial/demandload.py
author mason@suse.com
Thu, 09 Feb 2006 17:07:20 -0600
changeset 1711 8959700c2b19
parent 262 3db700146536
child 1826 f3abe0bdccdd
permissions -rw-r--r--
revlog.strip should clear the chunkcache The chunkcache isn't valid after a strip, it needs to be cleared out.

def demandload(scope, modules):
    class d:
        def __getattr__(self, name):
            mod = self.__dict__["mod"]
            scope = self.__dict__["scope"]
            scope[mod] = __import__(mod, scope, scope, [])
            return getattr(scope[mod], name)

    for m in modules.split():
        dl = d()
        dl.mod = m
        dl.scope = scope
        scope[m] = dl