Lines Matching defs:stream
67 static char *streamkwarglist[] = {"stream", "errors", NULL};
1411 cres = PyObject_CallMethod(self->stream,
1414 cres = PyObject_CallMethod(self->stream,
1421 "stream function returned a "
1616 {"stream", T_OBJECT,
1617 offsetof(MultibyteStreamReaderObject, stream),
1626 PyObject *stream, *codec = NULL;
1630 streamkwarglist, &stream, &errors))
1648 self->stream = stream;
1649 Py_INCREF(stream);
1679 Py_VISIT(self->stream);
1689 Py_XDECREF(self->stream);
1724 wr = _PyObject_CallMethodOneArg(self->stream, str_write, str);
1835 wr = _PyObject_CallMethodOneArg(self->stream, state->str_write, pwrt);
1850 PyObject *stream, *codec = NULL;
1854 streamkwarglist, &stream, &errors))
1872 self->stream = stream;
1873 Py_INCREF(stream);
1903 Py_VISIT(self->stream);
1913 Py_XDECREF(self->stream);
1926 {"stream", T_OBJECT,
1927 offsetof(MultibyteStreamWriterObject, stream),