def loadModule(filename):
if filename == '':
raise RuntimeError, 'Empty filename cannot be loaded'
print "Loading module %s" % (filename)
searchPath, file = os.path.split(filename)
if not searchPath in sys.path:
sys.path.append(searchPath)
sys.path.append(os.path.normpath(searchPath+"/../"))
moduleName, ext = os.path.splitext(file)
fp, pathName, description = imp.find_module(moduleName, [searchPath,])
try:
module = imp.load_module(moduleName, fp, pathName, description)
finally:
if fp:
fp.close()
return module
评论列表
文章目录