mirror of https://github.com/python/cpython
Fix call to os.waitpid, it does not take keyword args.
This commit is contained in:
parent
a18736b5d2
commit
c9332fada6
|
@ -487,7 +487,7 @@ class ForkingMixIn:
|
|||
# libraries that expect to be able to wait for their own
|
||||
# children.
|
||||
try:
|
||||
pid, status = os.waitpid(0, options=0)
|
||||
pid, status = os.waitpid(0, 0)
|
||||
except os.error:
|
||||
pid = None
|
||||
if pid not in self.active_children: continue
|
||||
|
|
Loading…
Reference in New Issue