mirror of
https://github.com/python/cpython.git
synced 2025-08-28 12:45:07 +00:00
Backed out changeset b9f7b1bf36aa
This commit is contained in:
parent
313cac88c5
commit
cf77da9fb5
2 changed files with 7 additions and 15 deletions
|
@ -1384,18 +1384,13 @@ find_maxchar_surrogates(const wchar_t *begin, const wchar_t *end,
|
|||
|
||||
for (iter = begin; iter < end; ) {
|
||||
#if SIZEOF_WCHAR_T == 2
|
||||
if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0])) {
|
||||
if ((iter+1) < end
|
||||
&& Py_UNICODE_IS_LOW_SURROGATE(iter[1]))
|
||||
{
|
||||
ch = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]);
|
||||
++(*num_surrogates);
|
||||
iter += 2;
|
||||
}
|
||||
else {
|
||||
PyErr_SetString(PyExc_ValueError, "illegal UTF-16 surrogate");
|
||||
return -1;
|
||||
}
|
||||
if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0])
|
||||
&& (iter+1) < end
|
||||
&& Py_UNICODE_IS_LOW_SURROGATE(iter[1]))
|
||||
{
|
||||
ch = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]);
|
||||
++(*num_surrogates);
|
||||
iter += 2;
|
||||
}
|
||||
else
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue