select: mark positional-only args (#7337)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2022-02-20 17:39:24 -08:00
committed by GitHub
parent 072f1c246e
commit 65724c254d

View File

@@ -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