8000 Use PEP-646 in stubs for `asyncio` by AlexWaygood · Pull Request #11015 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Use PEP-646 in stubs for asyncio #11015

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 10 commits into from
Dec 8, 2023
Prev Previous commit
Next Next commit
bad merge
  • Loading branch information
AlexWaygood authored Nov 26, 2023
commit 70872eccf17bb6485146ca98fe33c7c45a91df9b
2 changes: 1 addition & 1 deletion stdlib/asyncio/unix_events.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ if sys.platform != "win32":
def __exit__(
self, exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: types.TracebackType | None
) -> None: ...
def add_child_handler(self, pid: int, callback: Callable[..., object], *args: Any) -> None: ...
def add_child_handler(self, pid: int, callback: Callable[[Unpack[_Ts]], object], *args: Unpack[_Ts]) -> None: ...
def remove_child_handler(self, pid: int) -> bool: ...
def attach_loop(self, loop: AbstractEventLoop | None) -> None: ...
elif sys.version_info >= (3, 8):
Expand Down
0