Replace 'Text' with 'str' in py3 stdlib (#5466)

This commit is contained in:
Sebastian Rittau
2021-05-16 16:10:48 +02:00
committed by GitHub
parent dbe77b6ae9
commit 6a9c89e928
49 changed files with 328 additions and 349 deletions

View File

@@ -1,6 +1,6 @@
import sys
from types import TracebackType
from typing import IO, Any, List, NamedTuple, Optional, Text, Tuple, Type, Union, overload
from typing import IO, Any, List, NamedTuple, Optional, Tuple, Type, Union, overload
from typing_extensions import Literal
class Error(Exception): ...
@@ -13,7 +13,7 @@ class _aifc_params(NamedTuple):
comptype: bytes
compname: bytes
_File = Union[Text, IO[bytes]]
_File = Union[str, IO[bytes]]
_Marker = Tuple[int, int, bytes]
class Aifc_read: