summaryrefslogtreecommitdiff
path: root/Lib/test/test_urllib.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-01-21 11:43:02 +0800
committerSenthil Kumaran <senthil@uthcode.com>2012-01-21 11:43:02 +0800
commit58c60620689cac234fa8e860412e3d7af354c776 (patch)
treeffe6fc517e6c3cd1e8dc8937feb7e2d8e3d27a35 /Lib/test/test_urllib.py
parent631c25800068ce8f1d97157fd4d173a82ba32e62 (diff)
downloadcpython-git-58c60620689cac234fa8e860412e3d7af354c776.tar.gz
Fix Issue6631 - Disallow relative files paths in urllib*.open()
Diffstat (limited to 'Lib/test/test_urllib.py')
-rw-r--r--Lib/test/test_urllib.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
index 085eecf0f6..91aeb2f116 100644
--- a/Lib/test/test_urllib.py
+++ b/Lib/test/test_urllib.py
@@ -134,6 +134,9 @@ class urlopen_FileTests(unittest.TestCase):
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):