mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -21,5 +21,5 @@ class DecompressReader(RawIOBase):
|
||||
**decomp_args: Any,
|
||||
) -> None: ...
|
||||
def readinto(self, b: WriteableBuffer) -> int: ...
|
||||
def read(self, size: int = ...) -> bytes: ...
|
||||
def seek(self, offset: int, whence: int = ...) -> int: ...
|
||||
def read(self, size: int = -1) -> bytes: ...
|
||||
def seek(self, offset: int, whence: int = 0) -> int: ...
|
||||
|
||||
Reference in New Issue
Block a user