summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllib2.py
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-08-08 11:30:58 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-08-08 11:30:58 (GMT)
commit4c88db77a057ebe0a5a5496152d2099cf760e837 (patch)
treea4da8f131b4559913fb127cc6f152dd514934a9b /Lib/test/test_urllib2.py
parent10215de1ba09b7608a390aeecbd6cde77c8522f1 (diff)
downloadcpython-4c88db77a057ebe0a5a5496152d2099cf760e837.zip
cpython-4c88db77a057ebe0a5a5496152d2099cf760e837.tar.gz
cpython-4c88db77a057ebe0a5a5496152d2099cf760e837.tar.bz2
Merged revisions 83818 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83818 | senthil.kumaran | 2010-08-08 16:57:53 +0530 (Sun, 08 Aug 2010) | 4 lines Fix Issue8280 - urllib2's Request method will remove fragements in the url. This is how it should work,wget and curl work like this way too. Old behavior was wrong. ........
Diffstat (limited to 'Lib/test/test_urllib2.py')
-rw-r--r--Lib/test/test_urllib2.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py
index 9d1ed9b..83bd467 100644
--- a/Lib/test/test_urllib2.py
+++ b/Lib/test/test_urllib2.py
@@ -1250,6 +1250,16 @@ class RequestTests(unittest.TestCase):
self.assertEqual("www.python.org", self.get.get_origin_req_host())
self.assertEqual("www.perl.org", self.get.get_host())
+ def test_wrapped_url(self):
+ req = Request("<URL:http://www.python.org>")
+ self.assertEqual("www.python.org", req.get_host())
+
+ def test_urlwith_fragment(self):
+ req = Request("http://www.python.org/?qs=query#fragment=true")
+ self.assertEqual("/?qs=query", req.get_selector())
+ req = Request("http://www.python.org/#fun=true")
+ self.assertEqual("/", req.get_selector())
+
def test_main(verbose=None):
from test import test_urllib2