mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fredrik Lundh: eliminate a MSVC compiler warning.
This commit is contained in:
parent
9e896b37c7
commit
34888ed689
1 changed files with 1 additions and 1 deletions
|
@ -1959,7 +1959,7 @@ int PyUnicode_EncodeDecimal(Py_UNICODE *s,
|
|||
continue;
|
||||
}
|
||||
if (0 < ch < 256) {
|
||||
*output++ = ch;
|
||||
*output++ = (char) ch;
|
||||
continue;
|
||||
}
|
||||
/* All other characters are considered invalid */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue