mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-21 19:32:13 +08:00
stdlib: Use pos-only parameters for many Protocols (#10985)
This commit is contained in:
@@ -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