From: Ben Darnell Date: Thu, 14 Feb 2013 03:35:14 +0000 (-0500) Subject: Fix a straggling reference to netutil.TCPServer in comments. X-Git-Tag: v3.0.0~127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7327cde9d74a304f614b59a1d9ede2f7ca7957bc;p=thirdparty%2Ftornado.git Fix a straggling reference to netutil.TCPServer in comments. --- diff --git a/tornado/httpserver.py b/tornado/httpserver.py index 3f7bf41d5..24d5e6b3d 100644 --- a/tornado/httpserver.py +++ b/tornado/httpserver.py @@ -115,7 +115,7 @@ class HTTPServer(TCPServer): In many cases, `tornado.web.Application.listen` can be used to avoid the need to explicitly create the `HTTPServer`. - 2. `~tornado.tcpserver.TCPServer.bind`/`~tornado.netutil.TCPServer.start`: + 2. `~tornado.tcpserver.TCPServer.bind`/`~tornado.tcpserver.TCPServer.start`: simple multi-process:: server = HTTPServer(app)