mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-23 03:22:32 +08:00
Use PEP 570 syntax in stdlib (#11250)
This commit is contained in:
@@ -682,8 +682,8 @@ if sys.platform == "win32":
|
||||
errorTab: dict[int, str] # undocumented
|
||||
|
||||
class _SendableFile(Protocol):
|
||||
def read(self, __size: int) -> bytes: ...
|
||||
def seek(self, __offset: int) -> object: ...
|
||||
def read(self, size: int, /) -> bytes: ...
|
||||
def seek(self, offset: int, /) -> object: ...
|
||||
|
||||
# optional fields:
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user