[psutil]: Add missing __dir__ method to psutil.Popen (#14207)

This commit is contained in:
Harry
2025-05-31 15:21:13 +01:00
committed by GitHub
parent 8d1ac2e5ba
commit 9b7b2bafab
+1
View File
@@ -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: ...