Home | History | Annotate | Download | only in _io

Lines Matching refs:textio

17 class _io.TextIOWrapper "textio *" "&TextIOWrapper_TYpe"
64 "After the underlying buffer has been detached, the TextIO is in an\n"
695 } textio;
698 textiowrapper_set_decoded_chars(textio *self, PyObject *chars);
704 ascii_encode(textio *self, PyObject *text)
710 utf16be_encode(textio *self, PyObject *text)
717 utf16le_encode(textio *self, PyObject *text)
724 utf16_encode(textio *self, PyObject *text)
739 utf32be_encode(textio *self, PyObject *text)
746 utf32le_encode(textio *self, PyObject *text)
753 utf32_encode(textio *self, PyObject *text)
768 utf8_encode(textio *self, PyObject *text)
774 latin1_encode(textio *self, PyObject *text)
814 set_newline(textio *self, const char *newline)
850 _textiowrapper_set_decoder(textio *self, PyObject *codec_info,
905 _textiowrapper_set_encoder(textio *self, PyObject *codec_info,
949 _textiowrapper_fix_encoder_state(textio *self)
1022 _io_TextIOWrapper___init___impl(textio *self, PyObject *buffer,
1240 textiowrapper_change_encoding(textio *self, PyObject *encoding,
1303 _io_TextIOWrapper_reconfigure_impl(textio *self, PyObject *encoding,
1359 textiowrapper_clear(textio *self)
1378 textiowrapper_dealloc(textio *self)
1392 textiowrapper_traverse(textio *self, visitproc visit, void *arg)
1410 textiowrapper_closed_get(textio *self, void *context);
1471 _io_TextIOWrapper_detach_impl(textio *self)
1489 _textiowrapper_writeflush(textio *self)
1524 _io_TextIOWrapper_write_impl(textio *self, PyObject *text)
1628 textiowrapper_set_decoded_chars(textio *self, PyObject *chars)
1635 textiowrapper_get_decoded_chars(textio *self, Py_ssize_t n)
1671 textiowrapper_read_chunk(textio *self, Py_ssize_t size_hint)
1805 _io_TextIOWrapper_read_impl(textio *self, Py_ssize_t n)
2014 _textiowrapper_readline(textio *self, Py_ssize_t limit)
2183 _io_TextIOWrapper_readline_impl(textio *self, Py_ssize_t size)
2272 _textiowrapper_decoder_setstate(textio *self, cookie_type *cookie)
2293 _textiowrapper_encoder_reset(textio *self, int start_of_stream)
2312 _textiowrapper_encoder_setstate(textio *self, cookie_type *cookie)
2327 _io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence)
2514 _io_TextIOWrapper_tell_impl(textio *self)
2747 _io_TextIOWrapper_truncate_impl(textio *self, PyObject *pos)
2763 textiowrapper_repr(textio *self)
2839 _io_TextIOWrapper_fileno_impl(textio *self)
2851 _io_TextIOWrapper_seekable_impl(textio *self)
2863 _io_TextIOWrapper_readable_impl(textio *self)
2875 _io_TextIOWrapper_writable_impl(textio *self)
2887 _io_TextIOWrapper_isatty_impl(textio *self)
2895 textiowrapper_getstate(textio *self, PyObject *args)
2907 _io_TextIOWrapper_flush_impl(textio *self)
2923 _io_TextIOWrapper_close_impl(textio *self)
2968 textiowrapper_iternext(textio *self)
3006 textiowrapper_name_get(textio *self, void *context)
3013 textiowrapper_closed_get(textio *self, void *context)
3020 textiowrapper_newlines_get(textio *self, void *context)
3033 textiowrapper_errors_get(textio *self, void *context)
3041 textiowrapper_chunk_size_get(textio *self, void *context)
3048 textiowrapper_chunk_size_set(textio *self, PyObject *arg, void *context)
3068 #include "clinic/textio.c.h"
3148 {"encoding", T_OBJECT, offsetof(textio, encoding), READONLY},
3149 {"buffer", T_OBJECT, offsetof(textio, buffer), READONLY},
3150 {"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY},
3151 {"write_through", T_BOOL, offsetof(textio, write_through), READONLY},
3152 {"_finalizing", T_BOOL, offsetof(textio, finalizing), 0},
3171 sizeof(textio), /*tp_basicsize*/
3194 offsetof(textio, weakreflist), /*tp_weaklistoffset*/
3204 offsetof(textio, dict), /*tp_dictoffset*/