Am Donnerstag, 21. Mai 2009 20:08:55 schrieb Franck Joncourt:
> May I ask you what url make it crash so I can reproduce it.
The bug is usually not reproducible. This error occurs when the HTTP server 
closes the connection before sending any data.
You can test this with the following test HTTP server:
<testserver.py>
import BaseHTTPServer
class BrokenRequestHandler (BaseHTTPServer.BaseHTTPRequestHandler):
    def do_GET (self):
        self.wfile.write("")
if __name__ == '__main__':
    handler_class=BrokenRequestHandler
    server_address = ('', 8000)
    httpd = BaseHTTPServer.HTTPServer(server_address, handler_class)
    httpd.serve_forever()
</testserver.py>

Now test the URL "http://localhost:8000/"; to trigger the error.

Regards,
  Bastian

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to