mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
Issue #16330: Use surrogate-related macros
Patch written by Serhiy Storchaka.
This commit is contained in:
parent
a5e7cd06bb
commit
76df43de30
6 changed files with 25 additions and 28 deletions
|
@ -85,7 +85,7 @@ _Py_char2wchar(const char* arg, size_t *size)
|
|||
/* Only use the result if it contains no
|
||||
surrogate characters. */
|
||||
for (tmp = res; *tmp != 0 &&
|
||||
(*tmp < 0xd800 || *tmp > 0xdfff); tmp++)
|
||||
!Py_UNICODE_IS_SURROGATE(*tmp); tmp++)
|
||||
;
|
||||
if (*tmp == 0) {
|
||||
if (size != NULL)
|
||||
|
@ -131,7 +131,7 @@ _Py_char2wchar(const char* arg, size_t *size)
|
|||
memset(&mbs, 0, sizeof mbs);
|
||||
continue;
|
||||
}
|
||||
if (*out >= 0xd800 && *out <= 0xdfff) {
|
||||
if (Py_UNICODE_IS_SURROGATE(*out)) {
|
||||
/* Surrogate character. Escape the original
|
||||
byte sequence with surrogateescape. */
|
||||
argsize -= converted;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue