Kaydet (Commit) db8ed151 authored tarafından Ka-Ping Yee's avatar Ka-Ping Yee

Use '127.0.0.1' only on Mac; for other, sane platforms, use 'localhost'.

üst 228d8073
......@@ -1142,8 +1142,9 @@ pydoc</strong> by Ka-Ping Yee &lt;ping@lfw.org&gt;</font></small></small>"""
class DocServer(BaseHTTPServer.HTTPServer):
def __init__(self, port, callback):
self.address = ('127.0.0.1', port)
self.url = 'http://127.0.0.1:%d/' % port
host = (sys.platform == 'mac') and '127.0.0.1' or 'localhost'
self.address = (host, port)
self.url = 'http://%s:%d/' % (host, port)
self.callback = callback
self.base.__init__(self, self.address, self.handler)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment