(self, character)
| 250 | self.trans.write(RBRACKET) |
| 251 | |
| 252 | def readJSONSyntaxChar(self, character): |
| 253 | current = self.reader.read() |
| 254 | if character != current: |
| 255 | raise TProtocolException(TProtocolException.INVALID_DATA, |
| 256 | "Unexpected character: %s" % current) |
| 257 | |
| 258 | def _isHighSurrogate(self, codeunit): |
| 259 | return codeunit >= 0xd800 and codeunit <= 0xdbff |
no test coverage detected