Home
last modified time | relevance | path

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

/external/python/funcsigs/funcsigs/
D__init__.py67 kind=_POSITIONAL_ONLY)
200 _POSITIONAL_ONLY = _ParameterKind(0, name='POSITIONAL_ONLY') variable
229 POSITIONAL_ONLY = _POSITIONAL_ONLY
240 if kind not in (_POSITIONAL_ONLY, _POSITIONAL_OR_KEYWORD,
253 if kind != _POSITIONAL_ONLY:
259 if kind != _POSITIONAL_ONLY and not re.match(r'[a-z_]\w*$', name, re.I):
308 if kind == _POSITIONAL_ONLY:
485 top_kind = _POSITIONAL_ONLY
685 if param.kind == _POSITIONAL_ONLY:
738 if param.kind == _POSITIONAL_ONLY:
/external/python/cpython3/Lib/
Dinspect.py1150 if kind is _POSITIONAL_ONLY:
1752 if param.kind is _POSITIONAL_ONLY:
1785 assert param.kind is not _POSITIONAL_ONLY
1810 if kind in (_POSITIONAL_OR_KEYWORD, _POSITIONAL_ONLY):
2418 _POSITIONAL_ONLY = _ParameterKind.POSITIONAL_ONLY variable
2425 _POSITIONAL_ONLY: 'positional-only',
2459 POSITIONAL_ONLY = _POSITIONAL_ONLY
2499 self._kind = _POSITIONAL_ONLY
2761 top_kind = _POSITIONAL_ONLY
2780 if kind in (_POSITIONAL_ONLY, _POSITIONAL_OR_KEYWORD):
[all …]