def doc(self):
     if self._doc is None:
         self._doc = getdoc(self.get_instance())
     return self._doc
Exemple #2
0
 def __init__(self, library, handler_name, handler_method):
     _RunnableHandler.__init__(self, library, handler_name, handler_method,
                               getdoc(handler_method))
Exemple #3
0
 def doc(self):
     if self._doc is None:
         self._doc = getdoc(self.get_instance())
     return self._doc