Home
last modified time | relevance | path

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

/third_party/python/Include/
Dmodsupport.h63 PyAPI_FUNC(int) _PyArg_NoKwnames(const char *funcname, PyObject *kwnames);
67 #define _PyArg_NoKwnames(funcname, kwnames) \ macro
68 ((kwnames) == NULL || _PyArg_NoKwnames((funcname), (kwnames)))
/third_party/python/Objects/
Dboolobject.c63 if (!_PyArg_NoKwnames("bool", kwnames)) { in bool_vectorcall()
Denumobject.c335 if (!_PyArg_NoKwnames("reversed", kwnames)) { in reversed_vectorcall()
Dtupleobject.c762 if (!_PyArg_NoKwnames("tuple", kwnames)) { in tuple_vectorcall()
Dsetobject.c1027 if (!_PyArg_NoKwnames("frozenset", kwnames)) { in frozenset_vectorcall()
1965 if (!_PyArg_NoKwnames("set", kwnames)) { in set_vectorcall()
Drangeobject.c151 if (!_PyArg_NoKwnames("range", kwnames)) { in range_vectorcall()
Dfloatobject.c1665 if (!_PyArg_NoKwnames("float", kwnames)) { in float_vectorcall()
Dlistobject.c2743 if (!_PyArg_NoKwnames("list", kwnames)) { in list_vectorcall()
Dtypeobject.c3337 if (!_PyArg_NoKwnames("type", kwnames)) { in type_vectorcall()
/third_party/python/Python/
Dbltinmodule.c539 if (tp == &PyFilter_Type && !_PyArg_NoKwnames("filter", kwnames)) { in filter_vectorcall()
1263 if (tp == &PyMap_Type && !_PyArg_NoKwnames("map", kwnames)) { in map_vectorcall()
Dgetargs.c2716 #undef _PyArg_NoKwnames
2761 _PyArg_NoKwnames(const char *funcname, PyObject *kwnames) in _PyArg_NoKwnames() function
/third_party/python/Misc/NEWS.d/
D3.9.0a5.rst1166 Add _PyArg_NoKwnames helper function. Patch by Dong-hee Na.