Home
last modified time | relevance | path

Searched refs:_ParameterKind (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/
Dinspect.py2569 class _ParameterKind(enum.IntEnum): class
2583 _POSITIONAL_ONLY = _ParameterKind.POSITIONAL_ONLY
2584 _POSITIONAL_OR_KEYWORD = _ParameterKind.POSITIONAL_OR_KEYWORD
2585 _VAR_POSITIONAL = _ParameterKind.VAR_POSITIONAL
2586 _KEYWORD_ONLY = _ParameterKind.KEYWORD_ONLY
2587 _VAR_KEYWORD = _ParameterKind.VAR_KEYWORD
2632 self._kind = _ParameterKind(kind)
/external/python/cpython3/Lib/test/
Dtest_decimal.py5576 POS = inspect._ParameterKind.POSITIONAL_ONLY
5577 POS_KWD = inspect._ParameterKind.POSITIONAL_OR_KEYWORD
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst4404 Add description property for _ParameterKind