Lines Matching defs:module
804 Path to the python module containing device-specific
828 flags. docstring is the calling module's docstring, to be displayed
1108 module = None
1112 module."""
1117 if self.module is None:
1131 self.module = imp.load_module("device_specific", *info)
1133 print "unable to load device-specific module; assuming none"
1136 """Call the named function in the device-specific module, passing
1138 the DeviceSpecific object itself. If there is no module, or the
1139 module does not define the function, return the value of the
1141 if self.module is None or not hasattr(self.module, function_name):
1143 return getattr(self.module, function_name)(*((self,) + args), **kwargs)