Lines Matching refs:mod
663 mod = imp.new_module("ooo_script_framework")
664 mod.__dict__[GLOBAL_SCRIPTCONTEXT_NAME] = self.provCtx.scriptContext
665 exec(code, mod.__dict__)
666 values = mod.__dict__.get( CALLABLE_CONTAINER_NAME , None )
668 values = list(mod.__dict__.values())
824 mod = imp.new_module("ooo_script_framework")
825 mod.__dict__[GLOBAL_SCRIPTCONTEXT_NAME] = self.provCtx.scriptContext
826 exec(code, mod.__dict__)
827 values = mod.__dict__.get( CALLABLE_CONTAINER_NAME , None )
829 values = list(mod.__dict__.values())
1211 def __init__( self, func, mod ): argument
1213 self.mod = mod
1223 self.mod.__file__ + " (" + text + ")"
1236 self.mod.__file__ + " (" + text + ")"
1335 mod = self.provCtx.getModuleByUrl( fileUri )
1336 log.debug( " got mod " + str(mod) )
1338 func = mod.__dict__[ funcName ]
1341 return PythonScript( func, mod )