mirror of
https://github.com/python/cpython.git
synced 2025-07-16 07:45:20 +00:00
Relax condition
This commit is contained in:
parent
d218bf14cc
commit
e55ad2dff0
1 changed files with 1 additions and 1 deletions
|
@ -1837,7 +1837,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue