amk's fix attached to

[ 516299 ] urlparse can get fragments wrong
diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py
index 20336bc..48c526b 100644
--- a/Lib/test/test_urlparse.py
+++ b/Lib/test/test_urlparse.py
@@ -4,6 +4,24 @@
 
 RFC1808_BASE = "http://a/b/c/d;p?q#f"
 
+for url, expected in [('http://www.python.org',
+                       ('http', 'www.python.org', '', '', '', '')),
+                      ('http://www.python.org#abc',
+                       ('http', 'www.python.org', '', '', '', 'abc')),
+                      ('http://www.python.org/#abc',
+                       ('http', 'www.python.org', '/', '', '', 'abc')),
+                      (RFC1808_BASE,
+                       ('http', 'a', '/b/c/d', 'p', 'q', 'f')),
+                      ]:
+    result = urlparse.urlparse(url)
+    print "%-13s = %r" % (url, result)
+    if result != expected:
+        errors += 1
+        print "urlparse(%r)" % url
+        print ("expected %r,\n"
+               "     got %r") % (expected, result)
+print
+
 def checkJoin(relurl, expected):
     global errors
     result = urlparse.urljoin(RFC1808_BASE, relurl)