Commit 3fb718f9 authored by Victor Stinner's avatar Victor Stinner

Merged revisions 80384 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r80384 | victor.stinner | 2010-04-22 22:01:57 +0200 (jeu., 22 avril 2010) | 2 lines

  Fix my previous commit (r80382) for wide build (unicodeobject.c)
........
parent c634c186
......@@ -2481,9 +2481,8 @@ PyUnicode_EncodeUTF8(const Py_UNICODE *s,
*p++ = (char)(0x80 | ((ch >> 12) & 0x3f));
*p++ = (char)(0x80 | ((ch >> 6) & 0x3f));
*p++ = (char)(0x80 | (ch & 0x3f));
#endif
} else {
#endif
Py_ssize_t newpos;
PyObject *rep;
Py_ssize_t repsize, k;
......@@ -2543,7 +2542,9 @@ PyUnicode_EncodeUTF8(const Py_UNICODE *s,
}
}
Py_DECREF(rep);
#ifndef Py_UNICODE_WIDE
}
#endif
} else if (ch < 0x10000) {
*p++ = (char)(0xe0 | (ch >> 12));
*p++ = (char)(0x80 | ((ch >> 6) & 0x3f));
......
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