(self, attrs)
| 232 | # element handlers |
| 233 | |
| 234 | def begin_dict(self, attrs): |
| 235 | d = self._dict_type() |
| 236 | self.add_object(d) |
| 237 | self.stack.append(d) |
| 238 | |
| 239 | def end_dict(self): |
| 240 | if self.current_key: |
nothing calls this directly
no test coverage detected