mercurial/demandload.py
author Eric Hopper <hopper@omnifarious.org>
Fri, 07 Oct 2005 10:57:11 -0700
changeset 1458 1033892bbb87
parent 262 3db700146536
child 1826 f3abe0bdccdd
permissions -rw-r--r--
This changes the revlog.group and re-implements the localrepo.changeroup function in terms of it. revlog.group now takes a list of nodes, and some callback functions instead of a linkmap.

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