diff options
author | Georg Brandl <georg@python.org> | 2014-09-17 05:17:58 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-17 05:17:58 (GMT) |
commit | 0840b415829f7fab8db48e1b38bbbfc7da2df8c0 (patch) | |
tree | ea5d59d67f9a4800575b981c482de83def2a2400 /Lib/test | |
parent | dad182c16e6c9d10267a659bd376ba3d10affd4f (diff) | |
download | cpython-0840b415829f7fab8db48e1b38bbbfc7da2df8c0.zip cpython-0840b415829f7fab8db48e1b38bbbfc7da2df8c0.tar.gz cpython-0840b415829f7fab8db48e1b38bbbfc7da2df8c0.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 42a4089..b632434 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -510,6 +510,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 |