Searched refs:_PyObject_CallMethodIdObjArgs (Results 1 – 12 of 12) sorted by relevance
/third_party/python/Include/cpython/ |
D | abstract.h | 219 PyAPI_FUNC(PyObject *) _PyObject_CallMethodIdObjArgs(
|
/third_party/python/Modules/_sqlite/ |
D | connection.c | 1433 result = _PyObject_CallMethodIdObjArgs(cursor, &PyId_execute, sql, parameters, NULL); in pysqlite_connection_execute_impl() 1468 result = _PyObject_CallMethodIdObjArgs(cursor, &PyId_executemany, sql, in pysqlite_connection_executemany_impl() 1503 result = _PyObject_CallMethodIdObjArgs(cursor, &PyId_executescript, in pysqlite_connection_executescript()
|
/third_party/python/Python/ |
D | import.c | 832 res = _PyObject_CallMethodIdObjArgs(external, in PyImport_ExecCodeModuleObject() 1521 mod = _PyObject_CallMethodIdObjArgs(interp->importlib, in import_find_and_load() 1693 final_mod = _PyObject_CallMethodIdObjArgs( in PyImport_ImportModuleLevelObject()
|
/third_party/python/Modules/_io/ |
D | iobase.c | 701 PyObject *ret = _PyObject_CallMethodIdObjArgs(result, &PyId_extend, in _io__IOBase_readlines_impl()
|
D | textio.c | 2608 decoded = _PyObject_CallMethodIdObjArgs(self->decoder, &PyId_decode, in _io_TextIOWrapper_seek_impl()
|
/third_party/python/Modules/ |
D | _elementtree.c | 1235 return _PyObject_CallMethodIdObjArgs( in _elementtree_Element_find_impl() 1279 return _PyObject_CallMethodIdObjArgs( in _elementtree_Element_findtext_impl() 1333 return _PyObject_CallMethodIdObjArgs( in _elementtree_Element_findall_impl() 1379 return _PyObject_CallMethodIdObjArgs( in _elementtree_Element_iterfind_impl()
|
D | _asynciomodule.c | 360 handle = _PyObject_CallMethodIdObjArgs( in call_soon()
|
D | _datetimemodule.c | 1630 result = _PyObject_CallMethodIdObjArgs(time, &PyId_strftime, in wrap_strftime() 5164 return _PyObject_CallMethodIdObjArgs(module, &PyId__strptime_datetime, in datetime_strptime()
|
D | _pickle.c | 5125 return _PyObject_CallMethodIdObjArgs((PyObject *)self, &PyId_find_class, in find_class()
|
/third_party/python/Objects/ |
D | call.c | 803 _PyObject_CallMethodIdObjArgs(PyObject *obj, in _PyObject_CallMethodIdObjArgs() function
|
D | dictobject.c | 4464 return _PyObject_CallMethodIdObjArgs(other, &PyId_intersection, self, NULL); in _PyDictView_Intersect()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0b1.rst | 2008 ``_PyObject_CallMethodIdObjArgs`` to use ``_PyObject_GetMethod`` to avoid
|