(self, attrs)
| 255 | self.current_key = self.get_data() |
| 256 | |
| 257 | def begin_array(self, attrs): |
| 258 | a = [] |
| 259 | self.add_object(a) |
| 260 | self.stack.append(a) |
| 261 | |
| 262 | def end_array(self): |
| 263 | self.stack.pop() |
nothing calls this directly
no test coverage detected