Lines Matching refs:pending_bytes
693 PyObject *pending_bytes; /* list of bytes objects waiting to be member
862 Py_CLEAR(self->pending_bytes); in textiowrapper_init()
1087 Py_CLEAR(self->pending_bytes); in _textiowrapper_clear()
1116 Py_VISIT(self->pending_bytes); in textiowrapper_traverse()
1225 if (self->pending_bytes == NULL) in _textiowrapper_writeflush()
1228 pending = self->pending_bytes; in _textiowrapper_writeflush()
1231 Py_CLEAR(self->pending_bytes); in _textiowrapper_writeflush()
1308 if (self->pending_bytes == NULL) { in textiowrapper_write()
1309 self->pending_bytes = PyList_New(0); in textiowrapper_write()
1310 if (self->pending_bytes == NULL) { in textiowrapper_write()
1316 if (PyList_Append(self->pending_bytes, b) < 0) { in textiowrapper_write()