mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
11 lines
203 B
Python
11 lines
203 B
Python
import sys
|
|
from typing import Sequence
|
|
|
|
def iskeyword(s: str) -> bool: ...
|
|
|
|
kwlist: Sequence[str]
|
|
|
|
if sys.version_info >= (3, 9):
|
|
def issoftkeyword(s: str) -> bool: ...
|
|
softkwlist: Sequence[str]
|