mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-07-28 10:46:45 +08:00
Use PEP 570 syntax in stdlib (#11250)
This commit is contained in:
+2
-2
@@ -6,8 +6,8 @@ __all__ = ["what"]
|
||||
|
||||
class _ReadableBinary(Protocol):
|
||||
def tell(self) -> int: ...
|
||||
def read(self, __size: int) -> bytes: ...
|
||||
def seek(self, __offset: int) -> Any: ...
|
||||
def read(self, size: int, /) -> bytes: ...
|
||||
def seek(self, offset: int, /) -> Any: ...
|
||||
|
||||
@overload
|
||||
def what(file: StrPath | _ReadableBinary, h: None = None) -> str | None: ...
|
||||
|
||||
Reference in New Issue
Block a user