Home
last modified time | relevance | path

Searched refs:PyEval_CallObjectWithKeywords (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython3/Include/
Dceval.h17 Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
24 PyEval_CallObjectWithKeywords(callable, arg, (PyObject *)NULL)
/external/python/cpython2/Include/
Dceval.h10 PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
15 PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
/external/python/cpython2/Objects/
Ddescrobject.c247 result = PyEval_CallObjectWithKeywords(func, args, kwds); in methoddescr_call()
299 result = PyEval_CallObjectWithKeywords(func, args, kwds); in classmethoddescr_call()
343 result = PyEval_CallObjectWithKeywords(func, args, kwds); in wrapperdescr_call()
Dweakrefobject.c463 WRAP_TERNARY(proxy_call, PyEval_CallObjectWithKeywords) in WRAP_BINARY()
Dclassobject.c580 PyObject *res = PyEval_CallObjectWithKeywords(init, arg, kw); in PyInstance_New()
Dabstract.c2532 return PyEval_CallObjectWithKeywords(o, a, NULL);
/external/python/cpython2/PC/os2vacpp/
Dpython.def159 PyEval_CallObjectWithKeywords
/external/python/cpython2/Modules/
Dthreadmodule.c620 res = PyEval_CallObjectWithKeywords( in t_bootstrap()
D_hotshot.c1078 result = PyEval_CallObjectWithKeywords(callable, callargs, callkw); in profiler_runcall()
/external/python/cpython3/Objects/
Dcall.c354 PyEval_CallObjectWithKeywords(PyObject *callable, in PyEval_CallObjectWithKeywords() function
/external/python/cpython2/PC/os2emx/
Dpython27.def829 "PyEval_CallObjectWithKeywords"
/external/python/cpython3/PC/
Dpython3dll.c235 EXPORT_FUNC(PyEval_CallObjectWithKeywords)
/external/python/cpython3/Doc/data/
Dstable_abi.dat171 function,PyEval_CallObjectWithKeywords,3.2,
Dpython3.10.abi195 …<elf-symbol name='PyEval_CallObjectWithKeywords' type='func-type' binding='global-binding' visibil…
6951PyEval_CallObjectWithKeywords' mangled-name='PyEval_CallObjectWithKeywords' filepath='Objects/call…
/external/python/cpython3/Misc/NEWS.d/
D3.6.1rc1.rst26 Fix minor regression of PyEval_CallObjectWithKeywords. It should raise
D3.9.0a1.rst5630 ``PyEval_CallMethod`` and ``PyEval_CallObjectWithKeywords`` are deprecated.
D3.7.0a1.rst735 Fix minor regression of PyEval_CallObjectWithKeywords. It should raise
/external/python/cpython3/Misc/
Dstable_abi.txt580 function PyEval_CallObjectWithKeywords
/external/python/cpython2/Python/
Dbltinmodule.c200 retval = PyEval_CallObjectWithKeywords(func, alist, kwdict); in builtin_apply()
Dceval.c4217 PyEval_CallObjectWithKeywords(PyObject *func, PyObject *arg, PyObject *kw) in PyEval_CallObjectWithKeywords() function
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1204 ``PyEval_CallMethod`` and ``PyEval_CallObjectWithKeywords`` are deprecated.