(self)
| 524 | self.writeJSONObjectStart() |
| 525 | |
| 526 | def writeMapEnd(self): |
| 527 | self.writeJSONObjectEnd() |
| 528 | self.writeJSONArrayEnd() |
| 529 | |
| 530 | def writeListBegin(self, etype, size): |
| 531 | self.writeJSONArrayStart() |
nothing calls this directly
no test coverage detected