mirror of
https://github.com/python/cpython.git
synced 2024-11-23 18:04:37 +08:00
Use '127.0.0.1' only on Mac; for other, sane platforms, use 'localhost'.
This commit is contained in:
parent
228d80736c
commit
db8ed1517f
@ -1142,8 +1142,9 @@ pydoc</strong> by Ka-Ping Yee <ping@lfw.org></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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user