##// END OF EJS Templates
encoding: use double backslash...
Gregory Szorc -
r27356:c2effd1e default
parent child Browse files
Show More
@@ -407,7 +407,7 b' def jsonescape(s):'
407
407
408 if not _jsonmap:
408 if not _jsonmap:
409 for x in xrange(32):
409 for x in xrange(32):
410 _jsonmap[chr(x)] = "\u%04x" %x
410 _jsonmap[chr(x)] = "\\u%04x" % x
411 for x in xrange(32, 256):
411 for x in xrange(32, 256):
412 c = chr(x)
412 c = chr(x)
413 _jsonmap[c] = c
413 _jsonmap[c] = c
General Comments 0
You need to be logged in to leave comments. Login now