Unpin Python micro versions used by stubtest (#7619)

Add new `asyncio` method, fix allowlists
This commit is contained in:
Alex Waygood
2022-04-13 22:07:01 +02:00
committed by GitHub
parent ce88976c0d
commit a1b1b95f67
4 changed files with 6 additions and 7 deletions

View File

@@ -27,6 +27,9 @@ class ReadTransport(BaseTransport):
class WriteTransport(BaseTransport):
def set_write_buffer_limits(self, high: int | None = ..., low: int | None = ...) -> None: ...
def get_write_buffer_size(self) -> int: ...
if sys.version_info >= (3, 9):
def get_write_buffer_limits(self) -> tuple[int, int]: ...
def write(self, data: Any) -> None: ...
def writelines(self, list_of_data: list[Any]) -> None: ...
def write_eof(self) -> None: ...