Home
last modified time | relevance | path

Searched refs:uself (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Objects/
Dexceptions.c2055 PyUnicodeErrorObject *uself = (PyUnicodeErrorObject *)self; in UnicodeEncodeError_str() local
2060 if (!uself->object) in UnicodeEncodeError_str()
2066 reason_str = PyObject_Str(uself->reason); in UnicodeEncodeError_str()
2069 encoding_str = PyObject_Str(uself->encoding); in UnicodeEncodeError_str()
2073 if (uself->start < PyUnicode_GET_LENGTH(uself->object) && uself->end == uself->start+1) { in UnicodeEncodeError_str()
2074 Py_UCS4 badchar = PyUnicode_ReadChar(uself->object, uself->start); in UnicodeEncodeError_str()
2086 uself->start, in UnicodeEncodeError_str()
2093 uself->start, in UnicodeEncodeError_str()
2094 uself->end-1, in UnicodeEncodeError_str()
2177 PyUnicodeErrorObject *uself = (PyUnicodeErrorObject *)self; in UnicodeDecodeError_str() local
[all …]