(self)
| 398 | self.pushContext(JSONListContext(self)) |
| 399 | |
| 400 | def readJSONArrayEnd(self): |
| 401 | self.readJSONSyntaxChar(RBRACKET) |
| 402 | self.popContext() |
| 403 | |
| 404 | |
| 405 | class TJSONProtocol(TJSONProtocolBase): |
nothing calls this directly
no test coverage detected