(self)
| 67 | __repr__ = __str__ |
| 68 | |
| 69 | def _generate(self): |
| 70 | # Generate the docstring if it is not already cached. |
| 71 | if self._docstring is None: |
| 72 | self._docstring = self._create_docstring() |
| 73 | return self._docstring |
| 74 | |
| 75 | def _create_docstring(self): |
| 76 | docstring_structure = DocumentStructure('docstring', target='html') |
no test coverage detected