long_to_decimal_string() and _PyLong_Format() check the consistency of newly

created strings using _PyUnicode_CheckConsistency() in debug mode
This commit is contained in:
Victor Stinner 2012-04-26 00:37:21 +02:00
parent aed97733df
commit 3065093bb3
1 changed files with 2 additions and 0 deletions

View File

@ -1657,6 +1657,7 @@ long_to_decimal_string(PyObject *aa)
/* check we've counted correctly */
assert(p == PyUnicode_1BYTE_DATA(str));
assert(_PyUnicode_CheckConsistency(str, 1));
Py_DECREF(scratch);
return (PyObject *)str;
}
@ -1761,6 +1762,7 @@ _PyLong_Format(PyObject *aa, int base)
if (negative)
*--p = '-';
assert(p == PyUnicode_1BYTE_DATA(v));
assert(_PyUnicode_CheckConsistency(v, 1));
return v;
}