Lines Matching refs:textio

22 class _io.TextIOWrapper "textio *" "&TextIOWrapper_Type"
688 } textio;
691 textiowrapper_set_decoded_chars(textio *self, PyObject *chars);
697 ascii_encode(textio *self, PyObject *text)
703 utf16be_encode(textio *self, PyObject *text)
710 utf16le_encode(textio *self, PyObject *text)
717 utf16_encode(textio *self, PyObject *text)
732 utf32be_encode(textio *self, PyObject *text)
739 utf32le_encode(textio *self, PyObject *text)
746 utf32_encode(textio *self, PyObject *text)
761 utf8_encode(textio *self, PyObject *text)
767 latin1_encode(textio *self, PyObject *text)
816 set_newline(textio *self, const char *newline)
852 _textiowrapper_set_decoder(textio *self, PyObject *codec_info,
907 _textiowrapper_set_encoder(textio *self, PyObject *codec_info,
951 _textiowrapper_fix_encoder_state(textio *self)
1064 _io_TextIOWrapper___init___impl(textio *self, PyObject *buffer,
1247 textiowrapper_change_encoding(textio *self, PyObject *encoding,
1320 _io_TextIOWrapper_reconfigure_impl(textio *self, PyObject *encoding,
1376 textiowrapper_clear(textio *self)
1395 textiowrapper_dealloc(textio *self)
1409 textiowrapper_traverse(textio *self, visitproc visit, void *arg)
1427 textiowrapper_closed_get(textio *self, void *context);
1488 _io_TextIOWrapper_detach_impl(textio *self)
1506 _textiowrapper_writeflush(textio *self)
1583 _io_TextIOWrapper_write_impl(textio *self, PyObject *text)
1722 textiowrapper_set_decoded_chars(textio *self, PyObject *chars)
1729 textiowrapper_get_decoded_chars(textio *self, Py_ssize_t n)
1765 textiowrapper_read_chunk(textio *self, Py_ssize_t size_hint)
1898 _io_TextIOWrapper_read_impl(textio *self, Py_ssize_t n)
2108 _textiowrapper_readline(textio *self, Py_ssize_t limit)
2276 _io_TextIOWrapper_readline_impl(textio *self, Py_ssize_t size)
2365 _textiowrapper_decoder_setstate(textio *self, cookie_type *cookie)
2389 _textiowrapper_encoder_reset(textio *self, int start_of_stream)
2408 _textiowrapper_encoder_setstate(textio *self, cookie_type *cookie)
2423 _io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence)
2617 _io_TextIOWrapper_tell_impl(textio *self)
2852 _io_TextIOWrapper_truncate_impl(textio *self, PyObject *pos)
2868 textiowrapper_repr(textio *self)
2940 _io_TextIOWrapper_fileno_impl(textio *self)
2952 _io_TextIOWrapper_seekable_impl(textio *self)
2964 _io_TextIOWrapper_readable_impl(textio *self)
2976 _io_TextIOWrapper_writable_impl(textio *self)
2988 _io_TextIOWrapper_isatty_impl(textio *self)
3000 _io_TextIOWrapper_flush_impl(textio *self)
3016 _io_TextIOWrapper_close_impl(textio *self)
3060 textiowrapper_iternext(textio *self)
3098 textiowrapper_name_get(textio *self, void *context)
3105 textiowrapper_closed_get(textio *self, void *context)
3112 textiowrapper_newlines_get(textio *self, void *context)
3125 textiowrapper_errors_get(textio *self, void *context)
3133 textiowrapper_chunk_size_get(textio *self, void *context)
3140 textiowrapper_chunk_size_set(textio *self, PyObject *arg, void *context)
3160 #include "clinic/textio.c.h"
3239 {"encoding", T_OBJECT, offsetof(textio, encoding), READONLY},
3240 {"buffer", T_OBJECT, offsetof(textio, buffer), READONLY},
3241 {"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY},
3242 {"write_through", T_BOOL, offsetof(textio, write_through), READONLY},
3243 {"_finalizing", T_BOOL, offsetof(textio, finalizing), 0},
3262 sizeof(textio), /*tp_basicsize*/
3285 offsetof(textio, weakreflist), /*tp_weaklistoffset*/
3295 offsetof(textio, dict), /*tp_dictoffset*/