Home
last modified time | relevance | path

Searched refs:funcstr (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Objects/
Dmethodobject.c393 PyObject *funcstr = _PyObject_FunctionStr(func); in cfunction_check_kwargs() local
394 if (funcstr != NULL) { in cfunction_check_kwargs()
396 "%U takes no keyword arguments", funcstr); in cfunction_check_kwargs()
397 Py_DECREF(funcstr); in cfunction_check_kwargs()
477 PyObject *funcstr = _PyObject_FunctionStr(func); in cfunction_vectorcall_NOARGS() local
478 if (funcstr != NULL) { in cfunction_vectorcall_NOARGS()
480 "%U takes no arguments (%zd given)", funcstr, nargs); in cfunction_vectorcall_NOARGS()
481 Py_DECREF(funcstr); in cfunction_vectorcall_NOARGS()
504 PyObject *funcstr = _PyObject_FunctionStr(func); in cfunction_vectorcall_O() local
505 if (funcstr != NULL) { in cfunction_vectorcall_O()
[all …]
Ddescrobject.c257 PyObject *funcstr = _PyObject_FunctionStr(func); in method_check_args() local
258 if (funcstr != NULL) { in method_check_args()
260 "unbound method %U needs an argument", funcstr); in method_check_args()
261 Py_DECREF(funcstr); in method_check_args()
270 PyObject *funcstr = _PyObject_FunctionStr(func); in method_check_args() local
271 if (funcstr != NULL) { in method_check_args()
273 "%U takes no keyword arguments", funcstr); in method_check_args()
274 Py_DECREF(funcstr); in method_check_args()
420 PyObject *funcstr = _PyObject_FunctionStr(func); in method_vectorcall_NOARGS() local
421 if (funcstr != NULL) { in method_vectorcall_NOARGS()
[all …]
/third_party/python/Python/
Dceval.c6186 PyObject *funcstr = _PyObject_FunctionStr(func); in check_args_iterable() local
6187 if (funcstr != NULL) { in check_args_iterable()
6190 funcstr, Py_TYPE(args)->tp_name); in check_args_iterable()
6191 Py_DECREF(funcstr); in check_args_iterable()
6209 PyObject *funcstr = _PyObject_FunctionStr(func); in format_kwargs_error() local
6210 if (funcstr != NULL) { in format_kwargs_error()
6214 funcstr, Py_TYPE(kwargs)->tp_name); in format_kwargs_error()
6215 Py_DECREF(funcstr); in format_kwargs_error()
6223 PyObject *funcstr = _PyObject_FunctionStr(func); in format_kwargs_error() local
6224 if (funcstr != NULL) { in format_kwargs_error()
[all …]