mirror of
https://github.com/python/cpython.git
synced 2025-07-10 04:45:36 +00:00
Merge from 3.3
Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
This commit is contained in:
commit
aa72b1b448
2 changed files with 4 additions and 2 deletions
|
@ -2178,8 +2178,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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue