diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2014-09-17 05:19:01 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2014-09-17 05:19:01 (GMT) |
commit | aa72b1b448d09ddbff737ee1a3e0cb40cb6ca047 (patch) | |
tree | c2df85b0d20e7caab4f8a9dc29f1c23dd5f059ad /Lib/test | |
parent | f75805edb8d1399586bae6c12611705a4345b572 (diff) | |
parent | 2a42a0bff36129fc9aec06b20e67747cfcc85230 (diff) | |
download | cpython-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.py | 2 |
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 |