##// END OF EJS Templates
Fix bug with empty inc and exc...
Fix bug with empty inc and exc This fixes an exception that showed up when importing patches

File last commit:

r262:3db70014 default
r897:fe30f543 default
Show More
demandload.py
15 lines | 384 B | text/x-python | PythonLexer
mpm@selenic.com
implement demand loading hack...
r262 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