diff options
Diffstat (limited to 'Lib/SocketServer.py')
-rw-r--r-- | Lib/SocketServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py index 2c41fbb6dc..f01cb5f2cc 100644 --- a/Lib/SocketServer.py +++ b/Lib/SocketServer.py @@ -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 |