summaryrefslogtreecommitdiff
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2014-09-17 13:19:34 +0800
committerSenthil Kumaran <senthil@uthcode.com>2014-09-17 13:19:34 +0800
commit810dc9bc81e83b6f31d10fd9e92a9f4f79f72b5d (patch)
tree186da1e8f4c90abbfae4f1d48e8ddfbb90d6cd25 /Lib/pydoc.py
parentd9925a18ec1bc67d8835d0d29342c6c713c064af (diff)
parentaa72b1b448d09ddbff737ee1a3e0cb40cb6ca047 (diff)
downloadcpython-git-810dc9bc81e83b6f31d10fd9e92a9f4f79f72b5d.tar.gz
Merge from 3.4
Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index a577543218..8f3393b011 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -2176,8 +2176,8 @@ def _start_server(urlhandler, port):
class DocServer(http.server.HTTPServer):
def __init__(self, port, callback):
- self.host = (sys.platform == 'mac') and '127.0.0.1' or 'localhost'
- self.address = ('', port)
+ self.host = 'localhost'
+ self.address = (self.host, port)
self.callback = callback
self.base.__init__(self, self.address, self.handler)
self.quit = False