diff options
| author | Jesus Cea <jcea@jcea.es> | 2012-11-17 03:43:15 +0100 |
|---|---|---|
| committer | Jesus Cea <jcea@jcea.es> | 2012-11-17 03:43:15 +0100 |
| commit | aa3eafec628637ab0369d1268934eb6201cf32d1 (patch) | |
| tree | f663df212bba736aa488b8d5a6b813e3f564538d /Python/codecs.c | |
| parent | 41a5c48da1ced4383714ff0fb6da8a65b4f96bc7 (diff) | |
| parent | d5ef550810db6eee6cf6d9f2543b767543bb3bdf (diff) | |
| download | cpython-aa3eafec628637ab0369d1268934eb6201cf32d1.tar.gz | |
MERGE: Closes #16461: Wave library should be able to deal with 4GB wav files, and sample rate of 44100 Hz.
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; } |
