diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-03-04 00:34:37 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-03-04 00:34:37 (GMT) |
commit | c9590ad745caa9fc76a8373d19e8019d90e8f9e8 (patch) | |
tree | f4ef97eba8cadeb127abe6f63d6ec0bf5e3b3196 /Include | |
parent | d263d185534a8c19b719f27f5dab757afbc9319e (diff) | |
download | cpython-c9590ad745caa9fc76a8373d19e8019d90e8f9e8.zip cpython-c9590ad745caa9fc76a8373d19e8019d90e8f9e8.tar.gz cpython-c9590ad745caa9fc76a8373d19e8019d90e8f9e8.tar.bz2 |
Close #14085: remove assertions from PyUnicode_WRITE macro
Add checks in PyUnicode_WriteChar() and convert PyUnicode_New() assertion to a
test raising a Python exception.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/unicodeobject.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 465d87b..8f74995 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -499,17 +499,14 @@ enum PyUnicode_Kind { do { \ switch ((kind)) { \ case PyUnicode_1BYTE_KIND: { \ - assert(value <= 0xff); \ ((Py_UCS1 *)(data))[(index)] = (Py_UCS1)(value); \ break; \ } \ case PyUnicode_2BYTE_KIND: { \ - assert(value <= 0xffff); \ ((Py_UCS2 *)(data))[(index)] = (Py_UCS2)(value); \ break; \ } \ default: { \ - assert(value <= 0x10ffff); \ assert((kind) == PyUnicode_4BYTE_KIND); \ ((Py_UCS4 *)(data))[(index)] = (Py_UCS4)(value); \ } \ |