• Home
  • Raw
  • Download

Lines Matching refs:restuple

4116     PyObject *restuple = NULL;  in unicode_decode_call_errorhandler_wchar()  local
4143 restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL); in unicode_decode_call_errorhandler_wchar()
4144 if (restuple == NULL) in unicode_decode_call_errorhandler_wchar()
4146 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler_wchar()
4150 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_wchar()
4198 Py_DECREF(restuple); in unicode_decode_call_errorhandler_wchar()
4206 Py_XDECREF(restuple); in unicode_decode_call_errorhandler_wchar()
4221 PyObject *restuple = NULL; in unicode_decode_call_errorhandler_writer() local
4245 restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL); in unicode_decode_call_errorhandler_writer()
4246 if (restuple == NULL) in unicode_decode_call_errorhandler_writer()
4248 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler_writer()
4252 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_writer()
4303 Py_DECREF(restuple); in unicode_decode_call_errorhandler_writer()
4307 Py_XDECREF(restuple); in unicode_decode_call_errorhandler_writer()
6674 PyObject *restuple; in unicode_encode_call_errorhandler() local
6692 restuple = PyObject_CallFunctionObjArgs( in unicode_encode_call_errorhandler()
6694 if (restuple == NULL) in unicode_encode_call_errorhandler()
6696 if (!PyTuple_Check(restuple)) { in unicode_encode_call_errorhandler()
6698 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
6701 if (!PyArg_ParseTuple(restuple, argparse, in unicode_encode_call_errorhandler()
6703 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
6708 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
6715 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
6719 Py_DECREF(restuple); in unicode_encode_call_errorhandler()
8675 PyObject *restuple; in unicode_translate_call_errorhandler() local
8689 restuple = PyObject_CallFunctionObjArgs( in unicode_translate_call_errorhandler()
8691 if (restuple == NULL) in unicode_translate_call_errorhandler()
8693 if (!PyTuple_Check(restuple)) { in unicode_translate_call_errorhandler()
8695 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
8698 if (!PyArg_ParseTuple(restuple, argparse, in unicode_translate_call_errorhandler()
8700 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
8709 Py_DECREF(restuple); in unicode_translate_call_errorhandler()
8713 Py_DECREF(restuple); in unicode_translate_call_errorhandler()