for name in sorted(self.methods)]
if not self["Attributes"]:
self["Attributes"] = [(name, "", "")
for name in sorted(self.properties)]
@property
def methods(self):
After Change
doc_list = []
for name in sorted(items):
try:
doc_item = pydoc.getdoc(getattr(self._cls, name))
doc_list.append((name, "", splitlines_x(doc_item)))
except AttributeError:
pass // method doesn"t exist
self[field] = doc_list