197
210
module_path = object.__getattribute__(self, '_module_path')
198
211
module_python_path = '.'.join(module_path)
200
module = __import__(module_python_path, scope, scope, [member])
213
module = __import__(module_python_path, scope, scope, [member], level=0)
201
214
return getattr(module, member)
203
module = __import__(module_python_path, scope, scope, [])
216
module = __import__(module_python_path, scope, scope, [], level=0)
204
217
for path in module_path[1:]:
205
218
module = getattr(module, path)