Skip to content

Add missing Python 3.7 and 3.8 annotations #3399

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Oct 30, 2019
Next Next commit
Add explicit ssl_handshake_timeout arguments to open_connection and s…
…tart_server
  • Loading branch information
srittau committed Oct 23, 2019
commit 370aa58f8ea4b62a75b368d81ce1b51cf4272128
2 changes: 2 additions & 0 deletions stdlib/3/asyncio/streams.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def open_connection(
*,
loop: Optional[events.AbstractEventLoop] = ...,
limit: int = ...,
ssl_handshake_timeout: Optional[float] = ...,
**kwds: Any
) -> Generator[Any, None, Tuple[StreamReader, StreamWriter]]: ...

Expand All @@ -36,6 +37,7 @@ def start_server(
*,
loop: Optional[events.AbstractEventLoop] = ...,
limit: int = ...,
ssl_handshake_timeout: Optional[float] = ...,
**kwds: Any
) -> Generator[Any, None, events.AbstractServer]: ...

Expand Down