Lines Matching refs:restuple
1467 PyObject *restuple = NULL; in unicode_decode_call_errorhandler() local
1497 restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL); in unicode_decode_call_errorhandler()
1498 if (restuple == NULL) in unicode_decode_call_errorhandler()
1500 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler()
1504 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, &repunicode, &newpos)) in unicode_decode_call_errorhandler()
1542 Py_XDECREF(restuple); in unicode_decode_call_errorhandler()
3575 PyObject *restuple; in unicode_encode_call_errorhandler() local
3589 restuple = PyObject_CallFunctionObjArgs( in unicode_encode_call_errorhandler()
3591 if (restuple == NULL) in unicode_encode_call_errorhandler()
3593 if (!PyTuple_Check(restuple)) { in unicode_encode_call_errorhandler()
3595 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
3598 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, in unicode_encode_call_errorhandler()
3600 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
3607 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
3611 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
4896 PyObject *restuple; in unicode_translate_call_errorhandler() local
4910 restuple = PyObject_CallFunctionObjArgs( in unicode_translate_call_errorhandler()
4912 if (restuple == NULL) in unicode_translate_call_errorhandler()
4914 if (!PyTuple_Check(restuple)) { in unicode_translate_call_errorhandler()
4916 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
4919 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, in unicode_translate_call_errorhandler()
4921 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
4930 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
4934 Py_DECREF(restuple); in unicode_translate_call_errorhandler()