mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
stdlib: Add defaults for positional-only parameters (#9655)
This commit is contained in:
@@ -466,7 +466,7 @@ class SSLObject:
|
||||
class MemoryBIO:
|
||||
pending: int
|
||||
eof: bool
|
||||
def read(self, __size: int = ...) -> bytes: ...
|
||||
def read(self, __size: int = -1) -> bytes: ...
|
||||
def write(self, __buf: ReadableBuffer) -> int: ...
|
||||
def write_eof(self) -> None: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user