summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2014-09-17 05:19:01 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2014-09-17 05:19:01 (GMT)
commitaa72b1b448d09ddbff737ee1a3e0cb40cb6ca047 (patch)
treec2df85b0d20e7caab4f8a9dc29f1c23dd5f059ad /Lib/test
parentf75805edb8d1399586bae6c12611705a4345b572 (diff)
parent2a42a0bff36129fc9aec06b20e67747cfcc85230 (diff)
downloadcpython-aa72b1b448d09ddbff737ee1a3e0cb40cb6ca047.zip
cpython-aa72b1b448d09ddbff737ee1a3e0cb40cb6ca047.tar.gz
cpython-aa72b1b448d09ddbff737ee1a3e0cb40cb6ca047.tar.bz2
Merge from 3.3
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.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py
index a513fa6..8bf9b20 100644
--- a/Lib/test/test_pydoc.py
+++ b/Lib/test/test_pydoc.py
@@ -803,6 +803,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