diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-04-22 12:19:46 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-04-22 12:19:46 (GMT) |
commit | 7a1e09f60cf1d64f204eecf05c6581185e55fe8a (patch) | |
tree | 05e02a7348195043c52713edec488cd7602cec1e /Lib/test/test_urlparse.py | |
parent | dcb2403022520028a633143602359a30080ed257 (diff) | |
download | cpython-7a1e09f60cf1d64f204eecf05c6581185e55fe8a.zip cpython-7a1e09f60cf1d64f204eecf05c6581185e55fe8a.tar.gz cpython-7a1e09f60cf1d64f204eecf05c6581185e55fe8a.tar.bz2 |
Merged revisions 80362 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80362 | senthil.kumaran | 2010-04-22 17:40:13 +0530 (Thu, 22 Apr 2010) | 4 lines
Changed tests to only urlparse one, which was enough, addressed Ezio's comment
on Invalid url check statement and versionchanged string in docs.
........
Diffstat (limited to 'Lib/test/test_urlparse.py')
-rw-r--r-- | Lib/test/test_urlparse.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py index a0b2d77..f67487d 100644 --- a/Lib/test/test_urlparse.py +++ b/Lib/test/test_urlparse.py @@ -273,10 +273,10 @@ class UrlParseTestCase(unittest.TestCase): for invalid_url in [ 'http://::12.34.56.78]/', 'http://[::1/foo/', + 'ftp://[::1/foo/bad]/bad', 'http://[::1/foo/bad]/bad', 'http://[::ffff:12.34.56.78']: - self.assertRaises(ValueError, lambda : urllib.parse.urlparse(invalid_url).hostname) - self.assertRaises(ValueError, lambda : urllib.parse.urlparse(invalid_url)) + self.assertRaises(ValueError, urllib.parse.urlparse, invalid_url) def test_urldefrag(self): for url, defrag, frag in [ |