Lines Matching refs:restuple
4469 PyObject *restuple = NULL; in unicode_decode_call_errorhandler_wchar() local
4492 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_decode_call_errorhandler_wchar()
4493 if (restuple == NULL) in unicode_decode_call_errorhandler_wchar()
4495 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler_wchar()
4499 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_wchar()
4559 Py_DECREF(restuple); in unicode_decode_call_errorhandler_wchar()
4567 Py_XDECREF(restuple); in unicode_decode_call_errorhandler_wchar()
4582 PyObject *restuple = NULL; in unicode_decode_call_errorhandler_writer() local
4606 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_decode_call_errorhandler_writer()
4607 if (restuple == NULL) in unicode_decode_call_errorhandler_writer()
4609 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler_writer()
4613 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_writer()
4664 Py_DECREF(restuple); in unicode_decode_call_errorhandler_writer()
4668 Py_XDECREF(restuple); in unicode_decode_call_errorhandler_writer()
7135 PyObject *restuple; in unicode_encode_call_errorhandler() local
7153 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_encode_call_errorhandler()
7154 if (restuple == NULL) in unicode_encode_call_errorhandler()
7156 if (!PyTuple_Check(restuple)) { in unicode_encode_call_errorhandler()
7158 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
7161 if (!PyArg_ParseTuple(restuple, argparse, in unicode_encode_call_errorhandler()
7163 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
7168 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
7175 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
7179 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
9143 PyObject *restuple; in unicode_translate_call_errorhandler() local
9157 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_translate_call_errorhandler()
9158 if (restuple == NULL) in unicode_translate_call_errorhandler()
9160 if (!PyTuple_Check(restuple)) { in unicode_translate_call_errorhandler()
9162 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
9165 if (!PyArg_ParseTuple(restuple, argparse, in unicode_translate_call_errorhandler()
9167 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
9176 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
9180 Py_DECREF(restuple); in unicode_translate_call_errorhandler()