Lines Matching defs:chars
691 textiowrapper_set_decoded_chars(textio *self, PyObject *chars);
891 PyObject *chars;
894 chars = _PyIncrementalNewlineDecoder_decode(decoder, bytes, eof);
896 chars = PyObject_CallMethodObjArgs(decoder, &_Py_ID(decode), bytes,
899 if (check_decoded(chars) < 0)
903 return chars;
1719 /* Steal a reference to chars and store it in the decoded_char buffer;
1722 textiowrapper_set_decoded_chars(textio *self, PyObject *chars)
1724 Py_XSETREF(self->decoded_chars, chars);
1731 PyObject *chars;
1747 chars = PyUnicode_Substring(self->decoded_chars,
1750 if (chars == NULL)
1754 chars = self->decoded_chars;
1755 Py_INCREF(chars);
1759 return chars;
2045 /* Fast path for non-control chars. The loop always ends
2786 /* We got n chars for 1 byte */