mercurial/demandload.py
author mpm@selenic.com
Sat, 27 Aug 2005 16:28:53 -0700
changeset 1101 2cf5c8a4eae5
parent 262 3db700146536
child 1826 f3abe0bdccdd
permissions -rw-r--r--
Separate out old-http support - create new statichttprepo class - pull remote bits out of localrepo - pull remote bits out of util.opener - switch hg.repository to use statichttprepo

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