This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author arekm
Recipients arekm
Date 2009-04-22.12:15:45
SpamBayes Score 4.3048388e-08
Marked as misclassified No
Message-id <1240402546.97.0.496265243234.issue5814@psf.upfronthosting.co.za>
In-reply-to
Content
SocketServer.py contains call os.waitpid(0, options=0)
but os.waitpid doesn't accept keyword arguments.

I guess the best fix is to make waitpid accept such arguments.


Traceback (most recent call 
last):                                                 
  File "/usr/share/python2.6/SocketServer.py", line 281, in 
_handle_request_noblock
    self.process_request(request, 
client_address)                                  
  File "/usr/share/python2.6/SocketServer.py", line 522, in 
process_request        
    self.collect_children
()                                                        
  File "/usr/share/python2.6/SocketServer.py", line 490, in 
collect_children       
    pid, status = os.waitpid(0, 
options=0)                                         
TypeError: waitpid() takes no keyword arguments
History
Date User Action Args
2009-04-22 12:15:47arekmsetrecipients: + arekm
2009-04-22 12:15:46arekmsetmessageid: <1240402546.97.0.496265243234.issue5814@psf.upfronthosting.co.za>
2009-04-22 12:15:46arekmlinkissue5814 messages
2009-04-22 12:15:45arekmcreate