annotate mercurial/demandload.py @ 604:40a66d464ac2
Split wrapped demandload line
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Split wrapped demandload line
manifest hash:
e562d8b7e2c66c83dfc8a09c503edb1dac0fe997
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCyL/sywK+sNU5EO8RApE9AJwKG7SYhyT3uDteHecQKJPMm+nuAgCglKNp
MDDX+bOSNQMhCyAH83CuzRw=
=MpjC
-----END PGP SIGNATURE-----
author |
mpm@selenic.com |
date |
Sun, 03 Jul 2005 20:49:48 -0800 |
parents |
3db700146536 |
children |
f3abe0bdccdd |
rev |
line source |
262
|
1 def demandload(scope, modules):
|
|
2 class d:
|
|
3 def __getattr__(self, name):
|
|
4 mod = self.__dict__["mod"]
|
|
5 scope = self.__dict__["scope"]
|
|
6 scope[mod] = __import__(mod, scope, scope, [])
|
|
7 return getattr(scope[mod], name)
|
|
8
|
|
9 for m in modules.split():
|
|
10 dl = d()
|
|
11 dl.mod = m
|
|
12 dl.scope = scope
|
|
13 scope[m] = dl
|
|
14
|
|
15
|