*/
-#ifdef Py_DEBUG
-static int unicode_old_new_calls = 0;
-#endif
-
static PyUnicodeObject *
_PyUnicode_New(Py_ssize_t length)
{
return NULL;
}
-#ifdef Py_DEBUG
- ++unicode_old_new_calls;
-#endif
-
unicode = PyObject_New(PyUnicodeObject, &PyUnicode_Type);
if (unicode == NULL)
return NULL;
}
#ifdef Py_DEBUG
-static int unicode_new_new_calls = 0;
-
/* Functions wrapping macros for use in debugger */
char *_PyUnicode_utf8(void *unicode){
return PyUnicode_UTF8(unicode);
return unicode_empty;
}
-#ifdef Py_DEBUG
- ++unicode_new_new_calls;
-#endif
-
is_ascii = 0;
is_sharing = 0;
struct_size = sizeof(PyCompactUnicodeObject);