diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-11-12 16:48:25 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-11-12 16:48:25 -0500 |
commit | 9845da8acd3a38eabc247666f9968d3db78a7bdc (patch) | |
tree | 09badcc5e6d41892fb97db0ff41c5760fa000fe8 /Python/codecs.c | |
parent | 79b2bfe430a7ab9493f737ce2eddb080170dd0e5 (diff) | |
parent | cabe5e76cfca05fc7dc4b67c252af57ce8d74474 (diff) | |
download | cpython-9845da8acd3a38eabc247666f9968d3db78a7bdc.tar.gz |
merge 3.3
Diffstat (limited to 'Python/codecs.c')
-rw-r--r-- | Python/codecs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/codecs.c b/Python/codecs.c index fd67d1b9e1..37ae41b1ca 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -761,7 +761,7 @@ PyCodec_SurrogatePassErrors(PyObject *exc) for (i = start; i < end; i++) { /* object is guaranteed to be "ready" */ Py_UCS4 ch = PyUnicode_READ_CHAR(object, i); - if (ch < 0xd800 || ch > 0xdfff) { + if (!Py_UNICODE_IS_SURROGATE(ch)) { /* Not a surrogate, fail with original exception */ PyErr_SetObject(PyExceptionInstance_Class(exc), exc); Py_DECREF(res); @@ -797,7 +797,7 @@ PyCodec_SurrogatePassErrors(PyObject *exc) (p[2] & 0xc0) == 0x80) { /* it's a three-byte code */ ch = ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6) + (p[2] & 0x3f); - if (ch < 0xd800 || ch > 0xdfff) + if (!Py_UNICODE_IS_SURROGATE(ch)) /* it's not a surrogate - fail */ ch = 0; } |