(self)
| 338 | return b''.join(numeric).decode('ascii') |
| 339 | |
| 340 | def readJSONInteger(self): |
| 341 | self.context.read() |
| 342 | self.readJSONQuotes() |
| 343 | numeric = self.readJSONNumericChars() |
| 344 | self.readJSONQuotes() |
| 345 | try: |
| 346 | return int(numeric) |
| 347 | except ValueError: |
| 348 | raise TProtocolException(TProtocolException.INVALID_DATA, |
| 349 | "Bad data encounted in numeric data") |
| 350 | |
| 351 | def readJSONDouble(self): |
| 352 | self.context.read() |
nothing calls this directly
no test coverage detected