(self, attrsD)
| 1119 | self._cdf_common(attrsD) |
| 1120 | |
| 1121 | def _cdf_common(self, attrsD): |
| 1122 | if 'lastmod' in attrsD: |
| 1123 | self._start_modified({}) |
| 1124 | self.elementstack[-1][-1] = attrsD['lastmod'] |
| 1125 | self._end_modified() |
| 1126 | if 'href' in attrsD: |
| 1127 | self._start_link({}) |
| 1128 | self.elementstack[-1][-1] = attrsD['href'] |
| 1129 | self._end_link() |
| 1130 | |
| 1131 | def _start_feed(self, attrsD): |
| 1132 | self.infeed = 1 |
no test coverage detected