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