Issue #25169: os.getppid() is available on Windows since Python 3.2.
Patch by Bar Harel.
This commit is contained in:
commit
ad8dcb703e
|
@ -65,8 +65,7 @@ To show the individual process IDs involved, here is an expanded example::
|
||||||
def info(title):
|
def info(title):
|
||||||
print(title)
|
print(title)
|
||||||
print('module name:', __name__)
|
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())
|
print('process id:', os.getpid())
|
||||||
|
|
||||||
def f(name):
|
def f(name):
|
||||||
|
|
Loading…
Reference in New Issue