(self, attrsD)
| 1653 | self.pop('errorreportsto') |
| 1654 | |
| 1655 | def _start_summary(self, attrsD): |
| 1656 | context = self._getContext() |
| 1657 | if 'summary' in context: |
| 1658 | self._summaryKey = 'content' |
| 1659 | self._start_content(attrsD) |
| 1660 | else: |
| 1661 | self._summaryKey = 'summary' |
| 1662 | self.pushContent(self._summaryKey, attrsD, u'text/plain', 1) |
| 1663 | _start_itunes_summary = _start_summary |
| 1664 | |
| 1665 | def _end_summary(self): |
nothing calls this directly
no test coverage detected