181 def __init__( self, module ):
182 types.ModuleType.__init__(self, module.__name__)
183 self.__dict__[ 'module' ] = module
184 self.__dict__[ '__doc__' ] = module.__doc__
185 self.__dict__[ '__name__' ] = module.__name__
186 self.__dict__[ '__file__' ] = module.__file__
187
188 from .Bindings import py_svc
189 self.__dict__ ['py_svc'] = py_svc
190
191 from .Bindings import py_tool
192 self.__dict__ ['py_tool'] = py_tool
193
194 from .Bindings import py_alg
195 self.__dict__ ['py_alg'] = py_alg
196
197 self.__dict__ ['load_library'] = load_library
198 self.__dict__ ['find_library'] = find_library
199 self.__dict__ ['reload_module'] = reload_module
200 self.__dict__ ['py_reload'] = py_reload
201