]> granicus.if.org Git - python/commitdiff
Merged revisions 85342 via svnmerge from
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 9 Oct 2010 15:26:41 +0000 (15:26 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 9 Oct 2010 15:26:41 +0000 (15:26 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85342 | antoine.pitrou | 2010-10-09 17:24:28 +0200 (sam., 09 oct. 2010) | 4 lines

  Issue #10055: Make json C89-compliant in UCS4 mode.
........

Misc/NEWS
Modules/_json.c

index ae4c06b909ac4ed1546430f4731df549e5e8357b..a76b99557c610e65adc8f96699bd464098e323eb 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -600,6 +600,8 @@ Extension Modules
 Build
 -----
 
+- Issue #10055: Make json C89-compliant in UCS4 mode.
+
 - Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6.
 
 - Issue #1633863: Don't ignore $CC under AIX.
index 2e395255f0a2765b795354f99806886069bcaaf3..4da5e74dc26c3448634da4c415a0b4b0084366a7 100644 (file)
@@ -430,8 +430,8 @@ scanstring_unicode(PyObject *pystr, Py_ssize_t end, int strict, Py_ssize_t *next
                 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':