(self)
| 1256 | self.push('height', 0) |
| 1257 | |
| 1258 | def _end_height(self): |
| 1259 | value = self.pop('height') |
| 1260 | try: |
| 1261 | value = int(value) |
| 1262 | except ValueError: |
| 1263 | value = 0 |
| 1264 | if self.inimage: |
| 1265 | context = self._getContext() |
| 1266 | context['height'] = value |
| 1267 | |
| 1268 | def _start_url(self, attrsD): |
| 1269 | self.push('href', 1) |
nothing calls this directly
no test coverage detected