From 44e4b11dd8ad2d09b71b0ce2f59933d9cab7b743 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Mon, 21 Sep 2015 06:12:50 +0300 Subject: Issue #25169: os.getppid() is available on Windows since Python 3.2. Patch by Bar Harel. --- Doc/library/multiprocessing.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 93f59cd..cd680c5 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -65,8 +65,7 @@ To show the individual process IDs involved, here is an expanded example:: def info(title): print(title) print('module name:', __name__) - if hasattr(os, 'getppid'): # only available on Unix - print('parent process:', os.getppid()) + print('parent process:', os.getppid()) print('process id:', os.getpid()) def f(name): -- cgit v0.12