etisserant@10: from os import listdir, path etisserant@12: from xmlclass import DeclareXSDClass etisserant@12: from __templates import * etisserant@10: etisserant@12: _base_path = path.split(__file__)[0] etisserant@10: etisserant@12: __all__ = [name for name in listdir(_base_path) if path.isdir(path.join(_base_path, name)) and name != "CVS" or name.endswith(".py") and not name.startswith("__")] etisserant@10: lbessard@11: for name in __all__: lbessard@11: __import__(name, globals(), locals(), []) etisserant@12: