Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dinspect.py1473 kwonly_given = len([arg for arg in kwonly if arg in values])
1484 if kwonly_given:
1486 kwonly_sig = (msg % ("s" if given != 1 else "", kwonly_given,
1487 "s" if kwonly_given != 1 else ""))
1490 "was" if given == 1 and not kwonly_given else "were"))
/third_party/python/Python/
Dceval.c4662 Py_ssize_t kwonly_given = 0; in too_many_positional() local
4671 kwonly_given++; in too_many_positional()
4686 if (kwonly_given) { in too_many_positional()
4690 kwonly_given, in too_many_positional()
4691 kwonly_given != 1 ? "s" : ""); in too_many_positional()
4709 given == 1 && !kwonly_given ? "was" : "were"); in too_many_positional()