diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2014-09-17 05:17:58 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2014-09-17 05:17:58 (GMT) |
commit | 2a42a0bff36129fc9aec06b20e67747cfcc85230 (patch) | |
tree | ed6191fd020bf855c087bd8a31728b0dc288925a /Lib/test | |
parent | 7d0b8f95e7c6cc70c1a636312099773376337d14 (diff) | |
download | cpython-2a42a0bff36129fc9aec06b20e67747cfcc85230.zip cpython-2a42a0bff36129fc9aec06b20e67747cfcc85230.tar.gz cpython-2a42a0bff36129fc9aec06b20e67747cfcc85230.tar.bz2 |
Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_pydoc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index 43f4163..ce46d60 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -557,6 +557,8 @@ class PydocServerTest(unittest.TestCase): return text serverthread = pydoc._start_server(my_url_handler, port=0) + self.assertIn('localhost', serverthread.docserver.address) + starttime = time.time() timeout = 1 #seconds |