(self)
| 1180 | self.push('width', 0) |
| 1181 | |
| 1182 | def _end_width(self): |
| 1183 | value = self.pop('width') |
| 1184 | try: |
| 1185 | value = int(value) |
| 1186 | except: |
| 1187 | value = 0 |
| 1188 | if self.inimage: |
| 1189 | context = self._getContext() |
| 1190 | context['width'] = value |
| 1191 | |
| 1192 | def _start_height(self, attrsD): |
| 1193 | self.push('height', 0) |
nothing calls this directly
no test coverage detected