(self, trans)
| 174 | class TJSONProtocolBase(TProtocolBase): |
| 175 | |
| 176 | def __init__(self, trans): |
| 177 | TProtocolBase.__init__(self, trans) |
| 178 | self.resetWriteContext() |
| 179 | self.resetReadContext() |
| 180 | |
| 181 | # We don't have length limit implementation for JSON protocols |
| 182 | @property |
nothing calls this directly
no test coverage detected