Home | History | Annotate | Download | only in _io

Lines Matching refs:textio

34     "After the underlying buffer has been detached, the TextIO is in an\n"
708 } textio;
711 textiowrapper_set_decoded_chars(textio *self, PyObject *chars);
717 ascii_encode(textio *self, PyObject *text)
725 utf16be_encode(textio *self, PyObject *text)
733 utf16le_encode(textio *self, PyObject *text)
741 utf16_encode(textio *self, PyObject *text)
757 utf32be_encode(textio *self, PyObject *text)
765 utf32le_encode(textio *self, PyObject *text)
773 utf32_encode(textio *self, PyObject *text)
789 utf8_encode(textio *self, PyObject *text)
797 latin1_encode(textio *self, PyObject *text)
826 textiowrapper_init(textio *self, PyObject *args, PyObject *kwds)
1078 _textiowrapper_clear(textio *self)
1096 textiowrapper_dealloc(textio *self)
1108 textiowrapper_traverse(textio *self, visitproc visit, void *arg)
1126 textiowrapper_clear(textio *self)
1135 textiowrapper_closed_get(textio *self, void *context);
1192 textiowrapper_detach(textio *self)
1221 _textiowrapper_writeflush(textio *self)
1250 textiowrapper_write(textio *self, PyObject *args)
1350 textiowrapper_set_decoded_chars(textio *self, PyObject *chars)
1357 textiowrapper_get_decoded_chars(textio *self, Py_ssize_t n)
1392 textiowrapper_read_chunk(textio *self)
1495 textiowrapper_read(textio *self, PyObject *args)
1698 _textiowrapper_readline(textio *self, Py_ssize_t limit)
1857 textiowrapper_readline(textio *self, PyObject *args)
1968 _textiowrapper_decoder_setstate(textio *self, cookie_type *cookie)
1989 _textiowrapper_encoder_setstate(textio *self, cookie_type *cookie)
2009 textiowrapper_seek(textio *self, PyObject *args)
2192 textiowrapper_tell(textio *self, PyObject *args)
2358 textiowrapper_truncate(textio *self, PyObject *args)
2377 textiowrapper_repr(textio *self)
2416 textiowrapper_fileno(textio *self, PyObject *args)
2423 textiowrapper_seekable(textio *self, PyObject *args)
2430 textiowrapper_readable(textio *self, PyObject *args)
2437 textiowrapper_writable(textio *self, PyObject *args)
2444 textiowrapper_isatty(textio *self, PyObject *args)
2451 textiowrapper_flush(textio *self, PyObject *args)
2462 textiowrapper_close(textio *self, PyObject *args)
2497 textiowrapper_iternext(textio *self)
2535 textiowrapper_name_get(textio *self, void *context)
2542 textiowrapper_closed_get(textio *self, void *context)
2549 textiowrapper_newlines_get(textio *self, void *context)
2569 textiowrapper_errors_get(textio *self, void *context)
2577 textiowrapper_chunk_size_get(textio *self, void *context)
2584 textiowrapper_chunk_size_set(textio *self, PyObject *arg, void *context)
2621 {"encoding", T_OBJECT, offsetof(textio, encoding), READONLY},
2622 {"buffer", T_OBJECT, offsetof(textio, buffer), READONLY},
2623 {"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY},
2642 sizeof(textio), /*tp_basicsize*/
2665 offsetof(textio
2675 offsetof(textio, dict), /*tp_dictoffset*/