From 2a42a0bff36129fc9aec06b20e67747cfcc85230 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Wed, 17 Sep 2014 13:17:58 +0800 Subject: Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces. --- Lib/test/test_pydoc.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/test/test_pydoc.py') diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index 43f4163dae..ce46d60f6c 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 -- cgit v1.2.1