Beispiel #1
0
 def get_doc(self, objtxt):
     """Get object documentation dictionary"""
     obj, valid = self._eval(objtxt)
     if valid:
         return getdoc(obj)
Beispiel #2
0
 def get_builtin_doc(self, pyobject):
     buitin = pyobject.builtin
     return getdoc(buitin)
Beispiel #3
0
 def get_doc(self, objtxt):
     """Get object documentation"""
     obj, valid = self._eval(objtxt)
     if valid:
         return unicode(getdoc(obj))
Beispiel #4
0
 def get_doc(self, objtxt):
     """Get object documentation dictionary"""
     obj, valid = self._eval(objtxt)
     if valid:
         return getdoc(obj)
Beispiel #5
0
 def get_builtin_doc(self, pyobject):
     buitin = pyobject.builtin
     return getdoc(buitin)