mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-21 03:11:16 +08:00
Replace 'Text' with 'str' in py3 stdlib (#5466)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import sys
|
||||
from typing import Sequence, Text
|
||||
from typing import Sequence
|
||||
|
||||
def iskeyword(s: Text) -> bool: ...
|
||||
def iskeyword(s: str) -> bool: ...
|
||||
|
||||
kwlist: Sequence[str]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user