summaryrefslogtreecommitdiff
path: root/Lib/test/test_urllib2net.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-01-21 11:52:48 +0800
committerSenthil Kumaran <senthil@uthcode.com>2012-01-21 11:52:48 +0800
commit3800ea9f652817e510a0db27bf124d2b80e7be10 (patch)
treed340d0dcdf5dba0aa6617226d49fbb8a55eb34ea /Lib/test/test_urllib2net.py
parent002890861f7bd9eeb9036a89ade5e9a59fb6fa7c (diff)
downloadcpython-git-3800ea9f652817e510a0db27bf124d2b80e7be10.tar.gz
Fix Issue6631 - Disallow relative file paths in urllib urlopen
Diffstat (limited to 'Lib/test/test_urllib2net.py')
-rw-r--r--Lib/test/test_urllib2net.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py
index 54f4e0c6ca..5fcb4cbca2 100644
--- a/Lib/test/test_urllib2net.py
+++ b/Lib/test/test_urllib2net.py
@@ -125,6 +125,8 @@ class OtherNetworkTests(unittest.TestCase):
finally:
os.remove(TESTFN)
+ self.assertRaises(ValueError, urllib.request.urlopen,'./relative_path/to/file')
+
# XXX Following test depends on machine configurations that are internal
# to CNRI. Need to set up a public server with the right authentication
# configuration for test purposes.