Lines Matching refs:restuple

4271     PyObject *restuple = NULL;  in unicode_decode_call_errorhandler_wchar()  local
4295 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_decode_call_errorhandler_wchar()
4296 if (restuple == NULL) in unicode_decode_call_errorhandler_wchar()
4298 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler_wchar()
4302 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_wchar()
4352 Py_DECREF(restuple); in unicode_decode_call_errorhandler_wchar()
4360 Py_XDECREF(restuple); in unicode_decode_call_errorhandler_wchar()
4375 PyObject *restuple = NULL; in unicode_decode_call_errorhandler_writer() local
4399 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_decode_call_errorhandler_writer()
4400 if (restuple == NULL) in unicode_decode_call_errorhandler_writer()
4402 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler_writer()
4406 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_writer()
4457 Py_DECREF(restuple); in unicode_decode_call_errorhandler_writer()
4461 Py_XDECREF(restuple); in unicode_decode_call_errorhandler_writer()
6888 PyObject *restuple; in unicode_encode_call_errorhandler() local
6906 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_encode_call_errorhandler()
6907 if (restuple == NULL) in unicode_encode_call_errorhandler()
6909 if (!PyTuple_Check(restuple)) { in unicode_encode_call_errorhandler()
6911 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
6914 if (!PyArg_ParseTuple(restuple, argparse, in unicode_encode_call_errorhandler()
6916 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
6921 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
6928 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
6932 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
8874 PyObject *restuple; in unicode_translate_call_errorhandler() local
8888 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_translate_call_errorhandler()
8889 if (restuple == NULL) in unicode_translate_call_errorhandler()
8891 if (!PyTuple_Check(restuple)) { in unicode_translate_call_errorhandler()
8893 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
8896 if (!PyArg_ParseTuple(restuple, argparse, in unicode_translate_call_errorhandler()
8898 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
8907 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
8911 Py_DECREF(restuple); in unicode_translate_call_errorhandler()