commit | 5b0e9e84e9833337f791d5bc74f823a16681924b | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sat Oct 09 15:24:28 2010 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sat Oct 09 15:24:28 2010 +0000 |
tree | 75b543991e2dd0922e0e3ea79bbdeebbdd640a6e | |
parent | 8382d0fe2e86e56b3c206524d712851b8973c918 [diff] [blame] |
Issue #10055: Make json C89-compliant in UCS4 mode.
diff --git a/Modules/_json.c b/Modules/_json.c index bbaf7dd..dd9749b 100644 --- a/Modules/_json.c +++ b/Modules/_json.c
@@ -440,8 +440,8 @@ end += 6; /* Decode 4 hex digits */ for (; next < end; next++) { - c2 <<= 4; Py_UNICODE digit = buf[next]; + c2 <<= 4; switch (digit) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9':