Lines Matching defs:_POSITIONAL_ONLY
1397 if kind is _POSITIONAL_ONLY:
1992 if param.kind is _POSITIONAL_ONLY:
2025 assert param.kind is not _POSITIONAL_ONLY
2050 if kind in (_POSITIONAL_OR_KEYWORD, _POSITIONAL_ONLY):
2376 kind = _POSITIONAL_ONLY if posonly_left else _POSITIONAL_OR_KEYWORD
2385 kind = _POSITIONAL_ONLY if posonly_left else _POSITIONAL_OR_KEYWORD
2647 _POSITIONAL_ONLY = _ParameterKind.POSITIONAL_ONLY
2678 POSITIONAL_ONLY = _POSITIONAL_ONLY
2718 self._kind = _POSITIONAL_ONLY
2723 is_keyword = iskeyword(name) and self._kind is not _POSITIONAL_ONLY
2983 top_kind = _POSITIONAL_ONLY
3001 if kind in (_POSITIONAL_ONLY, _POSITIONAL_OR_KEYWORD):
3104 if param.kind == _POSITIONAL_ONLY:
3150 if param.name in kwargs and param.kind != _POSITIONAL_ONLY:
3186 if param.kind == _POSITIONAL_ONLY:
3241 if kind == _POSITIONAL_ONLY: