From 65724c254dc257dbccbd12efbaff9611e4ded501 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Sun, 20 Feb 2022 17:39:24 -0800 Subject: [PATCH] select: mark positional-only args (#7337) Co-authored-by: hauntsaninja <> --- stdlib/select.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/select.pyi b/stdlib/select.pyi index bd94cf130..d4a3656e1 100644 --- a/stdlib/select.pyi +++ b/stdlib/select.pyi @@ -109,9 +109,9 @@ if sys.platform == "linux": def __enter__(self: Self) -> Self: ... def __exit__( self, - exc_type: type[BaseException] | None = ..., - exc_val: BaseException | None = ..., - exc_tb: TracebackType | None = ..., + __exc_type: type[BaseException] | None = ..., + __exc_val: BaseException | None = ..., + __exc_tb: TracebackType | None = ..., ) -> None: ... def close(self) -> None: ... closed: bool