From 3800ea9f652817e510a0db27bf124d2b80e7be10 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Sat, 21 Jan 2012 11:52:48 +0800 Subject: Fix Issue6631 - Disallow relative file paths in urllib urlopen --- Lib/test/test_urllib2net.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/test/test_urllib2net.py') 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. -- cgit v1.2.1