Fix typo in unicodeobject.c (GH-23180)
exeeds -> exceeds Automerge-Triggered-By: GH:Mariatta
This commit is contained in:
parent
bfc6b63102
commit
38811d68ca
|
@ -1894,7 +1894,7 @@ _PyUnicode_Ready(PyObject *unicode)
|
||||||
_PyUnicode_WSTR_LENGTH(unicode) = 0;
|
_PyUnicode_WSTR_LENGTH(unicode) = 0;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
/* maxchar exeeds 16 bit, wee need 4 bytes for unicode characters */
|
/* maxchar exceeds 16 bit, wee need 4 bytes for unicode characters */
|
||||||
else {
|
else {
|
||||||
#if SIZEOF_WCHAR_T == 2
|
#if SIZEOF_WCHAR_T == 2
|
||||||
/* in case the native representation is 2-bytes, we need to allocate a
|
/* in case the native representation is 2-bytes, we need to allocate a
|
||||||
|
|
Loading…
Reference in New Issue