(self, high, low=None)
| 262 | return codeunit >= 0xdc00 and codeunit <= 0xdfff |
| 263 | |
| 264 | def _toChar(self, high, low=None): |
| 265 | if not low: |
| 266 | return chr(high) |
| 267 | else: |
| 268 | codepoint = (1 << 16) + ((high & 0x3ff) << 10) |
| 269 | codepoint += low & 0x3ff |
| 270 | return chr(codepoint) |
| 271 | |
| 272 | def readJSONString(self, skipContext): |
| 273 | highSurrogate = None |