Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr.

This commit is contained in:
Jeremy Hylton 2003-10-06 05:08:26 +00:00
parent dbe3d280e7
commit 504de6bd2c
2 changed files with 8 additions and 1 deletions

View file

@ -1750,7 +1750,7 @@ PyObject *PyUnicode_DecodeUnicodeEscape(const char *s,
chr += 10 + c - 'A';
}
s += i;
if (chr == 0xffffffff)
if (chr == 0xffffffff && PyErr_Occurred())
/* _decoding_error will have already written into the
target buffer. */
break;