Home
last modified time | relevance | path

Searched refs:PyObject_CallMethodOneArg (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Include/cpython/
Dabstract.h134 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg
199 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
/third_party/python/Modules/_io/
Dtextio.c983 PyObject *res = PyObject_CallMethodOneArg( in _textiowrapper_fix_encoder_state()
1598 ret = PyObject_CallMethodOneArg(self->buffer, _PyIO_str_write, b); in _textiowrapper_writeflush()
1673 b = PyObject_CallMethodOneArg(self->encoder, _PyIO_str_encode, text); in _io_TextIOWrapper_write_impl()
1864 input_chunk = PyObject_CallMethodOneArg(self->buffer, in textiowrapper_read_chunk()
2427 res = PyObject_CallMethodOneArg(self->encoder, _PyIO_str_setstate, in _textiowrapper_encoder_reset()
2569 res = PyObject_CallMethodOneArg(self->buffer, _PyIO_str_seek, posobj); in _io_TextIOWrapper_seek_impl()
2892 return PyObject_CallMethodOneArg(self->buffer, _PyIO_str_truncate, pos); in _io_TextIOWrapper_truncate_impl()
Dbufferedio.c1330 res = PyObject_CallMethodOneArg(self->raw, _PyIO_str_truncate, pos); in _io__Buffered_truncate_impl()
1476 res = PyObject_CallMethodOneArg(self->raw, _PyIO_str_readinto, memobj); in _bufferedreader_raw_read()
1833 res = PyObject_CallMethodOneArg(self->raw, _PyIO_str_write, memobj); in _bufferedwriter_raw_write()
/third_party/python/Doc/c-api/
Dcall.rst215 | :c:func:`PyObject_CallMethodOneArg` | obj + name | 1 object | --- |
351 .. c:function:: PyObject* PyObject_CallMethodOneArg(PyObject *obj, PyObject *name, PyObject *arg)
/third_party/python/Misc/NEWS.d/
D3.9.0a4.rst948 ``PyObject_CallMethodNoArgs``, ``PyObject_CallMethodOneArg``,