(self)
| 1685 | self.title_depth = -1 |
| 1686 | |
| 1687 | def _end_source(self): |
| 1688 | self.insource = 0 |
| 1689 | value = self.pop('source') |
| 1690 | if value: |
| 1691 | self.sourcedata['title'] = value |
| 1692 | self._getContext()['source'] = copy.deepcopy(self.sourcedata) |
| 1693 | self.sourcedata.clear() |
| 1694 | |
| 1695 | def _start_content(self, attrsD): |
| 1696 | self.pushContent('content', attrsD, u'text/plain', 1) |
nothing calls this directly
no test coverage detected