Home
last modified time | relevance | path

Searched refs:_PyObject_CallMethodIdObjArgs (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Include/cpython/
Dabstract.h219 PyAPI_FUNC(PyObject *) _PyObject_CallMethodIdObjArgs(
/third_party/python/Modules/_sqlite/
Dconnection.c1433 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/
Dimport.c832 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/
Diobase.c701 PyObject *ret = _PyObject_CallMethodIdObjArgs(result, &PyId_extend, in _io__IOBase_readlines_impl()
Dtextio.c2608 decoded = _PyObject_CallMethodIdObjArgs(self->decoder, &PyId_decode, in _io_TextIOWrapper_seek_impl()
/third_party/python/Modules/
D_elementtree.c1235 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.c360 handle = _PyObject_CallMethodIdObjArgs( in call_soon()
D_datetimemodule.c1630 result = _PyObject_CallMethodIdObjArgs(time, &PyId_strftime, in wrap_strftime()
5164 return _PyObject_CallMethodIdObjArgs(module, &PyId__strptime_datetime, in datetime_strptime()
D_pickle.c5125 return _PyObject_CallMethodIdObjArgs((PyObject *)self, &PyId_find_class, in find_class()
/third_party/python/Objects/
Dcall.c803 _PyObject_CallMethodIdObjArgs(PyObject *obj, in _PyObject_CallMethodIdObjArgs() function
Ddictobject.c4464 return _PyObject_CallMethodIdObjArgs(other, &PyId_intersection, self, NULL); in _PyDictView_Intersect()
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst2008 ``_PyObject_CallMethodIdObjArgs`` to use ``_PyObject_GetMethod`` to avoid