Commit 44e4b11d authored by Berker Peksag's avatar Berker Peksag

Issue #25169: os.getppid() is available on Windows since Python 3.2.

Patch by Bar Harel.
parent 96f802a9
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment