Kaydet (Commit) 62aa4d08 authored tarafından Victor Stinner's avatar Victor Stinner

Strip trailing spaces

üst 0a045efb
...@@ -4338,7 +4338,7 @@ PyUnicode_DecodeUTF8Stateful(const char *s, ...@@ -4338,7 +4338,7 @@ PyUnicode_DecodeUTF8Stateful(const char *s,
maxchar = utf8_max_char_size_and_has_errors(s, size, &unicode_size, maxchar = utf8_max_char_size_and_has_errors(s, size, &unicode_size,
consumed, &has_errors); consumed, &has_errors);
if (has_errors) if (has_errors)
/* maxchar and size computation might be incorrect; /* maxchar and size computation might be incorrect;
code below widens and resizes as necessary. */ code below widens and resizes as necessary. */
unicode = PyUnicode_New(size, 127); unicode = PyUnicode_New(size, 127);
else else
...@@ -5321,8 +5321,8 @@ PyUnicode_DecodeUTF16Stateful(const char *s, ...@@ -5321,8 +5321,8 @@ PyUnicode_DecodeUTF16Stateful(const char *s,
Py_UNICODE ch2 = (q[ihi] << 8) | q[ilo]; Py_UNICODE ch2 = (q[ihi] << 8) | q[ilo];
q += 2; q += 2;
if (0xDC00 <= ch2 && ch2 <= 0xDFFF) { if (0xDC00 <= ch2 && ch2 <= 0xDFFF) {
if (unicode_putchar(&unicode, &outpos, if (unicode_putchar(&unicode, &outpos,
(((ch & 0x3FF)<<10) | (((ch & 0x3FF)<<10) |
(ch2 & 0x3FF)) + 0x10000) < 0) (ch2 & 0x3FF)) + 0x10000) < 0)
goto onError; goto onError;
continue; continue;
...@@ -7653,7 +7653,7 @@ PyUnicode_DecodeCharmap(const char *s, ...@@ -7653,7 +7653,7 @@ PyUnicode_DecodeCharmap(const char *s,
if (targetsize == 1) { if (targetsize == 1) {
/* 1-1 mapping */ /* 1-1 mapping */
if (unicode_putchar(&v, &outpos, if (unicode_putchar(&v, &outpos,
PyUnicode_READ_CHAR(x, 0)) < 0) PyUnicode_READ_CHAR(x, 0)) < 0)
goto onError; goto onError;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment