--- python/branches/release26-maint/Lib/SocketServer.py 2009/07/07 11:09:38 73886 +++ python/branches/release26-maint/Lib/SocketServer.py 2009/07/07 13:04:54 73887 @@ -487,7 +487,7 @@ # 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