Introduce _typeshed.SupportsFlush (#10983)

This commit is contained in:
Sebastian Rittau
2023-11-06 15:31:02 +01:00
committed by GitHub
parent 6c5d1d3ae8
commit a5c1a4cd3f
2 changed files with 6 additions and 2 deletions

View File

@@ -236,6 +236,10 @@ class SupportsNoArgReadline(Protocol[_T_co]):
class SupportsWrite(Protocol[_T_contra]):
def write(self, __s: _T_contra) -> object: ...
# stable
class SupportsFlush(Protocol):
def flush(self) -> object: ...
# Unfortunately PEP 688 does not allow us to distinguish read-only
# from writable buffers. We use these aliases for readability for now.
# Perhaps a future extension of the buffer protocol will allow us to