Lines Matching refs:readinto
690 PyObject *readinto; /* readinto() method of the input stream. */
1395 if (!self->readinto) {
1396 /* readinto() not supported on file-like object, fall back to read()
1423 /* Call readinto() into user buffer */
1428 PyObject *read_size_obj = _Pickle_FastCall(self->readinto, buf_obj);
1438 "readinto() returned negative size");
1615 self->readinto = NULL;
1650 if (_PyObject_LookupAttr(file, &_Py_ID(readinto), &self->readinto) < 0) {
1661 Py_CLEAR(self->readinto);
7153 Py_XDECREF(self->readinto);
7177 Py_VISIT(self->readinto);
7190 Py_CLEAR(self->readinto);