koder aka kdanilov | 22d134e | 2016-11-08 11:33:19 +0200 | [diff] [blame] | 1 | from typing import Iterable |
| 2 | |
| 3 | class Process: |
| 4 | def __init__(self, pid: int) -> None: ... |
| 5 | def children(self, recursive: bool = True) -> Iterable['Process']: ... |
| 6 | def kill(self) -> None: ... |