From 9b7b2bafab7599195f400e1bf9f31620321aeb2e Mon Sep 17 00:00:00 2001 From: Harry Date: Sat, 31 May 2025 15:21:13 +0100 Subject: [PATCH] [psutil]: Add missing `__dir__` method to `psutil.Popen` (#14207) --- stubs/psutil/psutil/__init__.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/psutil/psutil/__init__.pyi b/stubs/psutil/psutil/__init__.pyi index 9d9955325..f17d3ac70 100644 --- a/stubs/psutil/psutil/__init__.pyi +++ b/stubs/psutil/psutil/__init__.pyi @@ -232,6 +232,7 @@ class Popen(Process): def __enter__(self) -> Self: ... def __exit__(self, *args: object, **kwargs: object) -> None: ... def __getattribute__(self, name: str) -> Any: ... + def __dir__(self) -> list[str]: ... def pids() -> list[int]: ... def pid_exists(pid: int) -> bool: ...