massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / keyword.pyi
1 import sys
2 from typing import Sequence
3
4 def iskeyword(s: str) -> bool: ...
5
6 kwlist: Sequence[str]
7
8 if sys.version_info >= (3, 9):
9     def issoftkeyword(s: str) -> bool: ...
10     softkwlist: Sequence[str]