diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-10-05 16:32:52 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-10-05 16:32:52 (GMT) |
commit | 55a190fbbddea150498a06351c66170c0a4a51bf (patch) | |
tree | c9c28f9440f3da6361193769a078801042e89622 /Lib/test | |
parent | 91a076a72f22e0c7ad997d46be76f7021a27ba6a (diff) | |
parent | 1b7da519b09d8885272d323af982d36675419075 (diff) | |
download | cpython-55a190fbbddea150498a06351c66170c0a4a51bf.zip cpython-55a190fbbddea150498a06351c66170c0a4a51bf.tar.gz cpython-55a190fbbddea150498a06351c66170c0a4a51bf.tar.bz2 |
merge from 3.2. Issue13104 - Fix urllib.request.thishost() utility function.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_urllib.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py index 671708a..77637a6 100644 --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -1058,6 +1058,10 @@ class Utility_Tests(unittest.TestCase): self.assertEqual(('user', 'a\vb'),urllib.parse.splitpasswd('user:a\vb')) self.assertEqual(('user', 'a:b'),urllib.parse.splitpasswd('user:a:b')) + def test_thishost(self): + """Test the urllib.request.thishost utility function returns a tuple""" + self.assertIsInstance(urllib.request.thishost(), tuple) + class URLopener_Tests(unittest.TestCase): """Testcase to test the open method of URLopener class.""" |