Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
mcp
/
cvp-wally
/
7f59d564c610a28e9ec46012e83b8024c9440377
/
.
/
stubs
/
psutil.pyi
blob: d3f1388b6d967bb71264bdd3718ff87519546010 [
file
] [
log
] [
blame
]
from
typing
import
Iterable
class
Process
:
def
__init__
(
self
,
pid
:
int
)
->
None
:
...
def
children
(
self
,
recursive
:
bool
=
True
)
->
Iterable
[
'Process'
]:
...
def
kill
(
self
)
->
None
:
...