diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2014-09-17 05:19:34 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2014-09-17 05:19:34 (GMT) |
commit | 810dc9bc81e83b6f31d10fd9e92a9f4f79f72b5d (patch) | |
tree | 186da1e8f4c90abbfae4f1d48e8ddfbb90d6cd25 /Lib/test/test_pydoc.py | |
parent | d9925a18ec1bc67d8835d0d29342c6c713c064af (diff) | |
parent | aa72b1b448d09ddbff737ee1a3e0cb40cb6ca047 (diff) | |
download | cpython-810dc9bc81e83b6f31d10fd9e92a9f4f79f72b5d.zip cpython-810dc9bc81e83b6f31d10fd9e92a9f4f79f72b5d.tar.gz cpython-810dc9bc81e83b6f31d10fd9e92a9f4f79f72b5d.tar.bz2 |
Merge from 3.4
Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
Diffstat (limited to 'Lib/test/test_pydoc.py')
-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 bf808d3..6742444 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -789,6 +789,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 |