diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2011-09-28 05:41:54 (GMT) | 
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2011-09-28 05:41:54 (GMT) | 
| commit | d63a3b8beb4a0841cb59fb3515347ccaab34b733 (patch) | |
| tree | 3b4e3cc63151c5a5a910c3550a190aefaea96ad4 /Lib/json | |
| parent | 48d49497c50e79d14e9df9527d766ca3a0a38be5 (diff) | |
| download | cpython-d63a3b8beb4a0841cb59fb3515347ccaab34b733.zip cpython-d63a3b8beb4a0841cb59fb3515347ccaab34b733.tar.gz cpython-d63a3b8beb4a0841cb59fb3515347ccaab34b733.tar.bz2  | |
Implement PEP 393.
Diffstat (limited to 'Lib/json')
| -rw-r--r-- | Lib/json/decoder.py | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/json/decoder.py b/Lib/json/decoder.py index 3174e31..e7c0539 100644 --- a/Lib/json/decoder.py +++ b/Lib/json/decoder.py @@ -121,8 +121,7 @@ def py_scanstring(s, end, strict=True,                  msg = "Invalid \\uXXXX escape"                  raise ValueError(errmsg(msg, s, end))              uni = int(esc, 16) -            # Check for surrogate pair on UCS-4 systems -            if 0xd800 <= uni <= 0xdbff and sys.maxunicode > 65535: +            if 0xd800 <= uni <= 0xdbff:                  msg = "Invalid \\uXXXX\\uXXXX surrogate pair"                  if not s[end + 5:end + 7] == '\\u':                      raise ValueError(errmsg(msg, s, end))  | 
