Vinay Sajip <vinay_sa...@yahoo.co.uk> added the comment:

Senthil: Almost, but not quite. end_headers() needs to be called even if 
send_header() isn't called (though it may be being called behind the scenes, 
that's not necessarily obvious to a user).

In my original unit-testing code, I had only

request.send_response(200)

and that caused a failure. My code now has to read

request.send_response(200)
request.end_headers()

No send_header() in sight! Perhaps the end_header() call requirement should 
also be mentioned in the docs on send_response().

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue12039>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to