Index: Objects/unicodeobject.c =================================================================== --- Objects/unicodeobject.c (revision 61820) +++ Objects/unicodeobject.c (working copy) @@ -3095,7 +3095,7 @@ /* UCS-4 character. Either store directly, or as surrogate pair. */ #ifdef Py_UNICODE_WIDE - *p++ = (Py_UNIC0DE) x; + *p++ = (Py_UNICODE) x; #else x -= 0x10000L; *p++ = 0xD800 + (Py_UNICODE) (x >> 10);