Lines Matching refs:mod
540 mod = imp.new_module("ooo_script_framework")
541 mod.__dict__[GLOBAL_SCRIPTCONTEXT_NAME] = self.provCtx.scriptContext
542 exec(code, mod.__dict__)
543 values = mod.__dict__.get( CALLABLE_CONTAINER_NAME , None )
545 values = list(mod.__dict__.values())
866 def __init__( self, func, mod ): argument
868 self.mod = mod
878 self.mod.__file__ + " (" + text + ")"
891 self.mod.__file__ + " (" + text + ")"
995 mod = self.provCtx.getModuleByUrl( fileUri )
996 log.debug( " got mod " + str(mod) )
998 func = mod.__dict__[ funcName ]
1001 return PythonScript( func, mod )