Changes between Initial Version and Version 1 of Ticket #16099, comment 3
- Timestamp:
- May 28, 2011, 7:22:48 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16099, comment 3
initial v1 3 3 it's incredibly easy to mix multithreading into python's simple HTTP server: 4 4 5 {{{ 5 6 class ThreadedHTTPServer(ThreadingMixIn, HTTPServer): 6 7 def __init__(self, server_address, HandlerClass): 7 8 HTTPServer.__init__(self, server_address, HandlerClass) 8 9 }}} 9 10 I made the web server in client/cros/httpd.py multithreaded in this way a few days ago.