Searched defs:inputobj (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython3/Objects/
H A Dunicodeobject.c4259 PyObject *inputobj = NULL; local
4292 inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject);
4293 if (!inputobj)
4295 if (!PyBytes_Check(inputobj)) {
4298 *input = PyBytes_AS_STRING(inputobj);
4299 insize = PyBytes_GET_SIZE(inputobj);
4303 Py_DECREF(inputobj);
4366 PyObject *inputobj = NULL; local
4394 inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject);
4395 if (!inputobj)
[all...]

Completed in 101 milliseconds