Fix assertion in unicode_adjust_maxchar()

This commit is contained in:
Victor Stinner 2011-10-06 13:27:56 +02:00
parent 207dc73ece
commit 200f21340d
1 changed files with 1 additions and 1 deletions

View File

@ -1791,7 +1791,7 @@ unicode_adjust_maxchar(PyObject **p_unicode)
}
}
}
assert(max_char > PyUnicode_MAX_CHAR_VALUE(unicode));
assert(max_char < PyUnicode_MAX_CHAR_VALUE(unicode));
copy = PyUnicode_New(len, max_char);
copy_characters(copy, 0, unicode, 0, len);
Py_DECREF(unicode);