diff -r 165d44ac7894 Doc/library/multiprocessing.rst --- a/Doc/library/multiprocessing.rst Fri Sep 18 16:32:51 2015 +0200 +++ b/Doc/library/multiprocessing.rst Fri Sep 18 19:57:03 2015 +0300 @@ -65,8 +65,7 @@ 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):