commit | 58c60620689cac234fa8e860412e3d7af354c776 | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <senthil@uthcode.com> | Sat Jan 21 11:43:02 2012 +0800 |
committer | Senthil Kumaran <senthil@uthcode.com> | Sat Jan 21 11:43:02 2012 +0800 |
tree | ffe6fc517e6c3cd1e8dc8937feb7e2d8e3d27a35 | |
parent | 631c25800068ce8f1d97157fd4d173a82ba32e62 [diff] [blame] |
Fix Issue6631 - Disallow relative files paths in urllib*.open()
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py index 085eecf..91aeb2f 100644 --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py
@@ -134,6 +134,9 @@ for line in self.returned_obj.__iter__(): self.assertEqual(line, self.text) + def test_relativelocalfile(self): + self.assertRaises(ValueError,urllib.urlopen,'./' + self.pathname) + class ProxyTests(unittest.TestCase): def setUp(self):