mirror of
https://github.com/python/cpython.git
synced 2025-07-15 23:35:23 +00:00
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) ........
This commit is contained in:
parent
158701d886
commit
0b79b76c2b
1 changed files with 3 additions and 2 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue