Home | History | Annotate | Download | only in _io

Lines Matching refs:avail

1638     Py_ssize_t avail;
1644 avail = (PyUnicode_GET_LENGTH(self->decoded_chars)
1647 assert(avail >= 0);
1649 if (n < 0 || n > avail)
1650 n = avail;
1652 if (self->decoded_chars_used > 0 || n < avail) {