view mercurial/demandload.py @ 562:be6233a2bfdd

hg clone: only use the absolute path for .hg/hgrc -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hg clone: only use the absolute path for .hg/hgrc manifest hash: 7fb6a265249a3c910c0321eb1efc61c38429ac91 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxZ5mywK+sNU5EO8RApIwAJwKdex+GwoflS8vKY9h7qA1F4/Z8wCgjkWH VsKsuPsM97sluArdDZLZsbs= =0g6X -----END PGP SIGNATURE-----
author mpm@selenic.com
date Fri, 01 Jul 2005 11:49:58 -0800
parents 3db700146536
children f3abe0bdccdd
line wrap: on
line source

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