summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllib2net.py
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-08-08 11:27:53 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-08-08 11:27:53 (GMT)
commitd95cc754836762be6571aa44bcad1a01cf6def1d (patch)
treeb93a7d02f984ab5820ed90705395ac4d1a2e9fc4 /Lib/test/test_urllib2net.py
parentad537f23e2e60b92c67fe01855ec1a0a7479df46 (diff)
downloadcpython-d95cc754836762be6571aa44bcad1a01cf6def1d.zip
cpython-d95cc754836762be6571aa44bcad1a01cf6def1d.tar.gz
cpython-d95cc754836762be6571aa44bcad1a01cf6def1d.tar.bz2
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_urllib2net.py')
-rw-r--r--Lib/test/test_urllib2net.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py
index ff7c7bf..8b9435a 100644
--- a/Lib/test/test_urllib2net.py
+++ b/Lib/test/test_urllib2net.py
@@ -149,6 +149,13 @@ class OtherNetworkTests(unittest.TestCase):
## self._test_urls(urls, self._extra_handlers()+[bauth, dauth])
+ def test_urlwithfrag(self):
+ urlwith_frag = "http://docs.python.org/glossary.html#glossary"
+ req = urllib.request.Request(urlwith_frag)
+ res = urllib.request.urlopen(req)
+ self.assertEqual(res.geturl(),
+ "http://docs.python.org/glossary.html")
+
def _test_urls(self, urls, handlers, retry=True):
import time
import logging