aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Tools/Import.py
blob: a46e1d3111cead7f9f335b1e6b3e3694cdc05ba4 (plain)
1
2
3
4
5
6
def my_import(name):
	mod = __import__(name)
	components = name.split('.')
	for comp in components[1:]:
		mod = getattr(mod, comp)
	return mod