Skip to content

Commit 6e78327

Browse files
committed
is_zombie in correct place
1 parent 1f56fe1 commit 6e78327

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

stubs/psutil/psutil/_psosx.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ if sys.platform == "darwin":
8484
def pids() -> list[int]: ...
8585
pid_exists = _psposix.pid_exists
8686
def wrap_exceptions(fun: Callable[_P, _R]) -> Callable[_P, _R]: ...
87+
def is_zombie(pid: int) -> bool: ...
8788

8889
class Process:
8990
__slots__ = ["_cache", "_name", "_ppid", "pid"]

stubs/psutil/psutil/_psutil_osx.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,3 @@ if sys.platform == "darwin":
6262
def virtual_mem() -> tuple[int, int, int, int, int, int]: ...
6363
def check_pid_range(pid: int, /) -> None: ...
6464
def set_debug(value: bool, /) -> None: ...
65-
def is_zombie() -> bool: ...

0 commit comments

Comments
 (0)