Lines Matching defs:self
6 "tell($self, /)\n"
15 _io__IOBase_tell_impl(PyObject *self);
18 _io__IOBase_tell(PyObject *self, PyObject *Py_UNUSED(ignored))
20 return _io__IOBase_tell_impl(self);
24 "flush($self, /)\n"
35 _io__IOBase_flush_impl(PyObject *self);
38 _io__IOBase_flush(PyObject *self, PyObject *Py_UNUSED(ignored))
40 return _io__IOBase_flush_impl(self);
44 "close($self, /)\n"
55 _io__IOBase_close_impl(PyObject *self);
58 _io__IOBase_close(PyObject *self, PyObject *Py_UNUSED(ignored))
60 return _io__IOBase_close_impl(self);
64 "seekable($self, /)\n"
76 _io__IOBase_seekable_impl(PyObject *self);
79 _io__IOBase_seekable(PyObject *self, PyObject *Py_UNUSED(ignored))
81 return _io__IOBase_seekable_impl(self);
85 "readable($self, /)\n"
96 _io__IOBase_readable_impl(PyObject *self);
99 _io__IOBase_readable(PyObject *self, PyObject *Py_UNUSED(ignored))
101 return _io__IOBase_readable_impl(self);
105 "writable($self, /)\n"
116 _io__IOBase_writable_impl(PyObject *self);
119 _io__IOBase_writable(PyObject *self, PyObject *Py_UNUSED(ignored))
121 return _io__IOBase_writable_impl(self);
125 "fileno($self, /)\n"
136 _io__IOBase_fileno_impl(PyObject *self);
139 _io__IOBase_fileno(PyObject *self, PyObject *Py_UNUSED(ignored))
141 return _io__IOBase_fileno_impl(self);
145 "isatty($self, /)\n"
156 _io__IOBase_isatty_impl(PyObject *self);
159 _io__IOBase_isatty(PyObject *self, PyObject *Py_UNUSED(ignored))
161 return _io__IOBase_isatty_impl(self);
165 "readline($self, size=-1, /)\n"
180 _io__IOBase_readline_impl(PyObject *self, Py_ssize_t limit);
183 _io__IOBase_readline(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
198 return_value = _io__IOBase_readline_impl(self, limit);
205 "readlines($self, hint=-1, /)\n"
218 _io__IOBase_readlines_impl(PyObject *self, Py_ssize_t hint);
221 _io__IOBase_readlines(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
236 return_value = _io__IOBase_readlines_impl(self, hint);
243 "writelines($self, lines, /)\n"
255 "read($self, size=-1, /)\n"
263 _io__RawIOBase_read_impl(PyObject *self, Py_ssize_t n);
266 _io__RawIOBase_read(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
290 return_value = _io__RawIOBase_read_impl(self, n);
297 "readall($self, /)\n"
306 _io__RawIOBase_readall_impl(PyObject *self);
309 _io__RawIOBase_readall(PyObject *self, PyObject *Py_UNUSED(ignored))
311 return _io__RawIOBase_readall_impl(self);