mirror of
https://github.com/python/cpython.git
synced 2025-08-28 20:56:54 +00:00
experimental UCS-4 support: don't assume that MS_WIN32 implies
HAVE_USABLE_WCHAR_T
This commit is contained in:
parent
ba18673045
commit
3083163dc1
2 changed files with 5 additions and 5 deletions
|
@ -1379,7 +1379,7 @@ PyObject *unicodeescape_string(const Py_UNICODE *s,
|
|||
while (size-- > 0) {
|
||||
Py_UNICODE ch = *s++;
|
||||
/* Escape quotes */
|
||||
if (quotes && (ch == q[1] || ch == '\\')) {
|
||||
if (quotes && (ch == (Py_UNICODE) q[1] || ch == '\\')) {
|
||||
*p++ = '\\';
|
||||
*p++ = (char) ch;
|
||||
}
|
||||
|
@ -1831,7 +1831,7 @@ PyObject *PyUnicode_AsASCIIString(PyObject *unicode)
|
|||
NULL);
|
||||
}
|
||||
|
||||
#ifdef MS_WIN32
|
||||
#if defined(MS_WIN32) && defined(HAVE_USABLE_WCHAR_T)
|
||||
|
||||
/* --- MBCS codecs for Windows -------------------------------------------- */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue