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 eblond
Recipients eblond
Date 2009-04-13.04:30:53
SpamBayes Score 5.0441295e-06
Marked as misclassified No
Message-id <1239597064.27.0.0905916009568.issue5746@psf.upfronthosting.co.za>
In-reply-to
Content
Here's the traceback I got:
===
>>> s.serve_forever()
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 
54611)
Traceback (most recent call last):
  File "C:\Python30\lib\socketserver.py", line 281, in 
_handle_request_noblock
    self.process_request(request, client_address)
  File "C:\Python30\lib\socketserver.py", line 307, in process_request
    self.finish_request(request, client_address)
  File "C:\Python30\lib\socketserver.py", line 320, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "C:\Python30\lib\socketserver.py", line 615, in __init__
    self.finish()
  File "C:\Python30\lib\socketserver.py", line 655, in finish
    if not self.wfile.closed:
AttributeError: 'RequestHandler' object has no attribute 'wfile'
----------------------------------------
===

's' is an instance of socketserver.TCPServer and the handler passed is 
an instance of socketserver.StreamRequestHandler.

I believe this must be a simple typo, so I didn't feel that more 
details is needed at that point.

Let me know if you have any question.
History
Date User Action Args
2009-04-13 04:31:07eblondsetrecipients: + eblond
2009-04-13 04:31:04eblondsetmessageid: <1239597064.27.0.0905916009568.issue5746@psf.upfronthosting.co.za>
2009-04-13 04:31:00eblondlinkissue5746 messages
2009-04-13 04:30:55eblondcreate