Issue #25169: os.getppid() is available on Windows since Python 3.2.
Patch by Bar Harel.
This commit is contained in:
parent
96f802a999
commit
44e4b11dd8
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue