(self, codeunit)
| 256 | "Unexpected character: %s" % current) |
| 257 | |
| 258 | def _isHighSurrogate(self, codeunit): |
| 259 | return codeunit >= 0xd800 and codeunit <= 0xdbff |
| 260 | |
| 261 | def _isLowSurrogate(self, codeunit): |
| 262 | return codeunit >= 0xdc00 and codeunit <= 0xdfff |