Commit dc724d6e authored by Marc-André Lemburg's avatar Marc-André Lemburg

Cosmetics.

parent e7c6ee4b
...@@ -1191,8 +1191,8 @@ PyObject *PyUnicode_EncodeUTF8(const Py_UNICODE *s, ...@@ -1191,8 +1191,8 @@ PyObject *PyUnicode_EncodeUTF8(const Py_UNICODE *s,
} }
else if (ch < 0x0800) { else if (ch < 0x0800) {
*p++ = 0xc0 | (ch >> 6); *p++ = (char)(0xc0 | (ch >> 6));
*p++ = 0x80 | (ch & 0x3f); *p++ = (char)(0x80 | (ch & 0x3f));
cbWritten += 2; cbWritten += 2;
} }
...@@ -1230,10 +1230,10 @@ PyObject *PyUnicode_EncodeUTF8(const Py_UNICODE *s, ...@@ -1230,10 +1230,10 @@ PyObject *PyUnicode_EncodeUTF8(const Py_UNICODE *s,
cbWritten += 3; cbWritten += 3;
} else { } else {
*p++ = 0xf0 | (ch>>18); *p++ = (char)(0xf0 | (ch>>18));
*p++ = 0x80 | ((ch>>12) & 0x3f); *p++ = (char)(0x80 | ((ch>>12) & 0x3f));
*p++ = 0x80 | ((ch>>6) & 0x3f); *p++ = (char)(0x80 | ((ch>>6) & 0x3f));
*p++ = 0x80 | (ch & 0x3f); *p++ = (char)(0x80 | (ch & 0x3f));
cbWritten += 4; cbWritten += 4;
} }
} }
......
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