Add __slots__ to third-party packages using stubdefaulter (#14619)

This commit is contained in:
Jelle Zijlstra
2025-08-21 15:38:13 -07:00
committed by GitHub
parent 573b57d8da
commit ca44e4c45d
135 changed files with 675 additions and 25 deletions
+1
View File
@@ -79,6 +79,7 @@ def is_zombie(pid): ...
def wrap_exceptions(fun): ...
class Process:
__slots__ = ["_cache", "_name", "_ppid", "pid"]
pid: Any
def __init__(self, pid) -> None: ...
def oneshot_enter(self) -> None: ...