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