1de7016
--- python/branches/release26-maint/Lib/SocketServer.py	2009/07/07 11:09:38	73886
1de7016
+++ python/branches/release26-maint/Lib/SocketServer.py	2009/07/07 13:04:54	73887
1de7016
@@ -487,7 +487,7 @@
1de7016
             # libraries that expect to be able to wait for their own
1de7016
             # children.
1de7016
             try:
1de7016
-                pid, status = os.waitpid(0, options=0)
1de7016
+                pid, status = os.waitpid(0, 0)
1de7016
             except os.error:
1de7016
                 pid = None
1de7016
             if pid not in self.active_children: continue