# HG changeset patch # User Volker Kleinfeld # Date 1148053918 25200 # Node ID 685597676a13770a824228a113012caf1ae16e9b # Parent 4be9a79b49b177f5c44c4f32b22999ff5583880a packagescan: handle demandload module naming changes. diff -r 4be9a79b49b1 -r 685597676a13 mercurial/packagescan.py --- a/mercurial/packagescan.py Wed May 17 13:21:36 2006 -0500 +++ b/mercurial/packagescan.py Fri May 19 08:51:58 2006 -0700 @@ -10,21 +10,48 @@ import sys import demandload import ihooks +import types +import string requiredmodules = {} # Will contain the modules imported by demandload def demandload(scope, modules): - """ fake demandload function that collects the required modules """ + """ fake demandload function that collects the required modules + foo import foo + foo bar import foo, bar + foo.bar import foo.bar + foo:bar from foo import bar + foo:bar,quux from foo import bar, quux + foo.bar:quux from foo.bar import quux""" + for m in modules.split(): mod = None try: - module, submodules = m.split(':') - submodules = submodules.split(',') + module, fromlist = m.split(':') + fromlist = fromlist.split(',') except: module = m - submodules = [] - mod = __import__(module, scope, scope, submodules) - scope[module] = mod - requiredmodules[mod.__name__] = 1 + fromlist = [] + mod = __import__(module, scope, scope, fromlist) + if fromlist == []: + # mod is only the top package, but we need all packages + comp = module.split('.') + i = 1 + mn = comp[0] + while True: + # mn and mod.__name__ might not be the same + scope[mn] = mod + requiredmodules[mod.__name__] = 1 + if len(comp) == i: break + mod = getattr(mod,comp[i]) + mn = string.join(comp[:i+1],'.') + i += 1 + else: + # mod is the last package in the component list + requiredmodules[mod.__name__] = 1 + for f in fromlist: + scope[f] = getattr(mod,f) + if type(scope[f]) == types.ModuleType: + requiredmodules[scope[f].__name__] = 1 def getmodules(libpath,packagename): """ helper for finding all required modules of package """