diff options
author | Michael W. Hudson <mwh@python.net> | 2002-03-18 13:06:00 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-03-18 13:06:00 (GMT) |
commit | bd3e771a979de04e273f735e69fb8842006137be (patch) | |
tree | 9af3ccf4b84b034358b9ee4c23be964c2481b5ba /Lib/test/output | |
parent | 5c137c225113764faae183034e7a85175a699ae2 (diff) | |
download | cpython-bd3e771a979de04e273f735e69fb8842006137be.zip cpython-bd3e771a979de04e273f735e69fb8842006137be.tar.gz cpython-bd3e771a979de04e273f735e69fb8842006137be.tar.bz2 |
amk's fix attached to
[ 516299 ] urlparse can get fragments wrong
Diffstat (limited to 'Lib/test/output')
-rw-r--r-- | Lib/test/output/test_urlparse | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/output/test_urlparse b/Lib/test/output/test_urlparse index ca71729..c478783 100644 --- a/Lib/test/output/test_urlparse +++ b/Lib/test/output/test_urlparse @@ -1,4 +1,9 @@ test_urlparse +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') +http://a/b/c/d;p?q#f = ('http', 'a', '/b/c/d', 'p', 'q', 'f') + urlparse.urljoin() tests g:h = 'g:h' |