Home
last modified time | relevance | path

Searched refs:nkwds (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dtypeobject.c2111 const Py_ssize_t nkwds = kwds == NULL ? 0 : PyDict_Size(kwds); in type_new() local
2113 if (PyType_CheckExact(metatype) && nargs == 1 && nkwds == 0) { in type_new()
2122 if (nargs + nkwds != 3) { in type_new()
/external/python/cpython3/Objects/
Dtypeobject.c2370 const Py_ssize_t nkwds = kwds == NULL ? 0 : PyDict_GET_SIZE(kwds); in type_new() local
2372 if (nargs == 1 && nkwds == 0) { in type_new()