(self, attrs)
| 238 | # element handlers |
| 239 | |
| 240 | def begin_dict(self, attrs): |
| 241 | d = self._dict_type() |
| 242 | self.add_object(d) |
| 243 | self.stack.append(d) |
| 244 | |
| 245 | def end_dict(self): |
| 246 | if self.current_key: |
nothing calls this directly
no test coverage detected