"Tortelini" <[EMAIL PROTECTED]> writes: > I am making custom web server using HTTPServer and want to be able to > access it simultaneously from different computers. To achieve > multithreading, I have been experimenting with ThreadingMixIn from > SocketServer, but it doesn't seem to work,
One common error is to define your class as something like: class myServer(HTTPServer, ThreadingMixin): ... You have to put ThreadingMixin first, since it overrides methods of TCPServer: class myServer(ThreadingMixin, HTTPServer): ... -- http://mail.python.org/mailman/listinfo/python-list