{
PyObject *encodingObj = NULL;
PyObject *objectObj = NULL;
- int length;
int start;
int end;
PyObject *reasonObj = NULL;
if (!(objectObj = PyUnicodeEncodeError_GetObject(self)))
goto error;
- length = PyUnicode_GET_SIZE(objectObj);
-
if (PyUnicodeEncodeError_GetStart(self, &start))
goto error;
{
PyObject *encodingObj = NULL;
PyObject *objectObj = NULL;
- int length;
int start;
int end;
PyObject *reasonObj = NULL;
if (!(objectObj = PyUnicodeDecodeError_GetObject(self)))
goto error;
- length = PyString_GET_SIZE(objectObj);
-
if (PyUnicodeDecodeError_GetStart(self, &start))
goto error;
UnicodeTranslateError__str__(PyObject *self, PyObject *arg)
{
PyObject *objectObj = NULL;
- int length;
int start;
int end;
PyObject *reasonObj = NULL;
if (!(objectObj = PyUnicodeTranslateError_GetObject(self)))
goto error;
- length = PyUnicode_GET_SIZE(objectObj);
-
if (PyUnicodeTranslateError_GetStart(self, &start))
goto error;