def getDefinition(self):
   """
   Returns the definition of the accessor_method with the name and arguments
   """
   obj = self.getDocumentedObject()
   if obj is not None:
     return getCallableSignatureString(obj)
 def getDefinition(self):
     """
 Returns the definition of the accessor_method with the name and arguments
 """
     obj = self.getDocumentedObject()
     if obj is not None:
         return getCallableSignatureString(obj)
Пример #3
0
 def getDefinition(self):
     """
 Returns the definition of the workflow_method with the name and arguments
 """
     return getCallableSignatureString(
         self.getDocumentedObject().im_func._m)
Пример #4
0
 def getDefinition(self):
   """
   Returns the definition of the class_method with the name and arguments
   """
   return getCallableSignatureString(self.getDocumentedObject())