From 231ebbefaae2ce6f9ef4250774fd501900d975c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Val=C3=A9rian=20Rousset?= Date: Wed, 10 Aug 2016 20:01:54 +0200 Subject: [PATCH] add types to multiprocessing.process (#463) --- stdlib/3/multiprocessing/process.pyi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/stdlib/3/multiprocessing/process.pyi b/stdlib/3/multiprocessing/process.pyi index 15d29f084..e1a43f507 100644 --- a/stdlib/3/multiprocessing/process.pyi +++ b/stdlib/3/multiprocessing/process.pyi @@ -1,2 +1,4 @@ -def current_process(): ... -def active_children(): ... +from multiprocessing import Process + +def current_process() -> Process: ... +def active_children() -> List[Process]: ...