diff options
Diffstat (limited to 'Objects/unicodectype.c')
| -rw-r--r-- | Objects/unicodectype.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodectype.c b/Objects/unicodectype.c index 18c9a89a8a..2e67dc50ad 100644 --- a/Objects/unicodectype.c +++ b/Objects/unicodectype.c @@ -36,7 +36,7 @@ gettyperecord(Py_UNICODE code) { int index; - if (code >= 65536) + if (code >= 0x110000) index = 0; else { index = index1[(code>>SHIFT)]; |
