Searched refs:PyObject_CallMethodOneArg (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Include/cpython/ |
D | abstract.h | 138 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg 203 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
|
/external/python/cpython3/Modules/_io/ |
D | textio.c | 982 PyObject *res = PyObject_CallMethodOneArg( in _textiowrapper_fix_encoder_state() 1602 ret = PyObject_CallMethodOneArg(self->buffer, _PyIO_str_write, b); in _textiowrapper_writeflush() 1672 b = PyObject_CallMethodOneArg(self->encoder, _PyIO_str_encode, text); in _io_TextIOWrapper_write_impl() 1854 input_chunk = PyObject_CallMethodOneArg(self->buffer, in textiowrapper_read_chunk() 2417 res = PyObject_CallMethodOneArg(self->encoder, _PyIO_str_setstate, in _textiowrapper_encoder_reset() 2557 res = PyObject_CallMethodOneArg(self->buffer, _PyIO_str_seek, posobj); in _io_TextIOWrapper_seek_impl() 2880 return PyObject_CallMethodOneArg(self->buffer, _PyIO_str_truncate, pos); in _io_TextIOWrapper_truncate_impl()
|
D | bufferedio.c | 1328 res = PyObject_CallMethodOneArg(self->raw, _PyIO_str_truncate, pos); in _io__Buffered_truncate_impl() 1474 res = PyObject_CallMethodOneArg(self->raw, _PyIO_str_readinto, memobj); in _bufferedreader_raw_read() 1822 res = PyObject_CallMethodOneArg(self->raw, _PyIO_str_write, memobj); in _bufferedwriter_raw_write()
|
/external/python/cpython3/Doc/c-api/ |
D | call.rst | 215 | :c:func:`PyObject_CallMethodOneArg` | obj + name | 1 object | --- | 351 .. c:function:: PyObject* PyObject_CallMethodOneArg(PyObject *obj, PyObject *name, PyObject *arg)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a4.rst | 948 ``PyObject_CallMethodNoArgs``, ``PyObject_CallMethodOneArg``,
|