(self, attrs)
| 249 | self.current_key = self.get_data() |
| 250 | |
| 251 | def begin_array(self, attrs): |
| 252 | a = [] |
| 253 | self.add_object(a) |
| 254 | self.stack.append(a) |
| 255 | |
| 256 | def end_array(self): |
| 257 | self.stack.pop() |
nothing calls this directly
no test coverage detected