Lines Matching refs:PyObject
14 static PyObject *
15 _io__IOBase_tell_impl(PyObject *self);
17 static PyObject *
18 _io__IOBase_tell(PyObject *self, PyObject *Py_UNUSED(ignored))
34 static PyObject *
35 _io__IOBase_flush_impl(PyObject *self);
37 static PyObject *
38 _io__IOBase_flush(PyObject *self, PyObject *Py_UNUSED(ignored))
54 static PyObject *
55 _io__IOBase_close_impl(PyObject *self);
57 static PyObject *
58 _io__IOBase_close(PyObject *self, PyObject *Py_UNUSED(ignored))
75 static PyObject *
76 _io__IOBase_seekable_impl(PyObject *self);
78 static PyObject *
79 _io__IOBase_seekable(PyObject *self, PyObject *Py_UNUSED(ignored))
95 static PyObject *
96 _io__IOBase_readable_impl(PyObject *self);
98 static PyObject *
99 _io__IOBase_readable(PyObject *self, PyObject *Py_UNUSED(ignored))
115 static PyObject *
116 _io__IOBase_writable_impl(PyObject *self);
118 static PyObject *
119 _io__IOBase_writable(PyObject *self, PyObject *Py_UNUSED(ignored))
135 static PyObject *
136 _io__IOBase_fileno_impl(PyObject *self);
138 static PyObject *
139 _io__IOBase_fileno(PyObject *self, PyObject *Py_UNUSED(ignored))
155 static PyObject *
156 _io__IOBase_isatty_impl(PyObject *self);
158 static PyObject *
159 _io__IOBase_isatty(PyObject *self, PyObject *Py_UNUSED(ignored))
179 static PyObject *
180 _io__IOBase_readline_impl(PyObject *self, Py_ssize_t limit);
182 static PyObject *
183 _io__IOBase_readline(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
185 PyObject *return_value = NULL;
217 static PyObject *
218 _io__IOBase_readlines_impl(PyObject *self, Py_ssize_t hint);
220 static PyObject *
221 _io__IOBase_readlines(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
223 PyObject *return_value = NULL;
262 static PyObject *
263 _io__RawIOBase_read_impl(PyObject *self, Py_ssize_t n);
265 static PyObject *
266 _io__RawIOBase_read(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
268 PyObject *return_value = NULL;
279 PyObject *iobj = _PyNumber_Index(args[0]);
305 static PyObject *
306 _io__RawIOBase_readall_impl(PyObject *self);
308 static PyObject *
309 _io__RawIOBase_readall(PyObject *self, PyObject *Py_UNUSED(ignored))