summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllib.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-01-21 03:52:48 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-01-21 03:52:48 (GMT)
commit3800ea9f652817e510a0db27bf124d2b80e7be10 (patch)
treed340d0dcdf5dba0aa6617226d49fbb8a55eb34ea /Lib/test/test_urllib.py
parent002890861f7bd9eeb9036a89ade5e9a59fb6fa7c (diff)
downloadcpython-3800ea9f652817e510a0db27bf124d2b80e7be10.zip
cpython-3800ea9f652817e510a0db27bf124d2b80e7be10.tar.gz
cpython-3800ea9f652817e510a0db27bf124d2b80e7be10.tar.bz2
Fix Issue6631 - Disallow relative file paths in urllib urlopen
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 5a6dd65..f6b48cb 100644
--- a/Lib/test/test_urllib.py
+++ b/Lib/test/test_urllib.py
@@ -160,6 +160,9 @@ class urlopen_FileTests(unittest.TestCase):
for line in self.returned_obj:
self.assertEqual(line, self.text)
+ def test_relativelocalfile(self):
+ self.assertRaises(ValueError,urllib.request.urlopen,'./' + self.pathname)
+
class ProxyTests(unittest.TestCase):
def setUp(self):