Lines Matching refs:mod
534 mod = imp.new_module("ooo_script_framework")
535 mod.__dict__[GLOBAL_SCRIPTCONTEXT_NAME] = self.provCtx.scriptContext
536 exec(code, mod.__dict__)
537 values = mod.__dict__.get( CALLABLE_CONTAINER_NAME , None )
539 values = list(mod.__dict__.values())
860 def __init__( self, func, mod ): argument
862 self.mod = mod
872 self.mod.__file__ + " (" + text + ")"
885 self.mod.__file__ + " (" + text + ")"
989 mod = self.provCtx.getModuleByUrl( fileUri )
990 log.debug( " got mod " + str(mod) )
992 func = mod.__dict__[ funcName ]
995 return PythonScript( func, mod )