(self, attrsD)
| 1595 | self.title_depth = title_depth |
| 1596 | |
| 1597 | def _start_description(self, attrsD): |
| 1598 | context = self._getContext() |
| 1599 | if 'summary' in context: |
| 1600 | self._summaryKey = 'content' |
| 1601 | self._start_content(attrsD) |
| 1602 | else: |
| 1603 | self.pushContent('description', attrsD, u'text/html', self.infeed or self.inentry or self.insource) |
| 1604 | _start_dc_description = _start_description |
| 1605 | |
| 1606 | def _start_abstract(self, attrsD): |
nothing calls this directly
no test coverage detected