diff options
author | Skip Montanaro <skip@pobox.com> | 2002-03-23 05:29:59 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-03-23 05:29:59 (GMT) |
commit | b1ba6b00445443e4c8ddbf7878841aef19d8d023 (patch) | |
tree | aac4ac2e337a3532d6749d0fae4a8ce8de70e51e /Lib/test | |
parent | 0c2c8e77fba38a68554b264a2985000d3006d8d1 (diff) | |
download | cpython-b1ba6b00445443e4c8ddbf7878841aef19d8d023.zip cpython-b1ba6b00445443e4c8ddbf7878841aef19d8d023.tar.gz cpython-b1ba6b00445443e4c8ddbf7878841aef19d8d023.tar.bz2 |
no longer needed - converted test_urlparse.py to use unittest
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/output/test_urlparse | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/Lib/test/output/test_urlparse b/Lib/test/output/test_urlparse deleted file mode 100644 index c478783..0000000 --- a/Lib/test/output/test_urlparse +++ /dev/null @@ -1,46 +0,0 @@ -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' -g = 'http://a/b/c/g' -./g = 'http://a/b/c/g' -g/ = 'http://a/b/c/g/' -/g = 'http://a/g' -//g = 'http://g' -?y = 'http://a/b/c/d;p?y' -g?y = 'http://a/b/c/g?y' -g?y/./x = 'http://a/b/c/g?y/./x' -#s = 'http://a/b/c/d;p?q#s' -g#s = 'http://a/b/c/g#s' -g#s/./x = 'http://a/b/c/g#s/./x' -g?y#s = 'http://a/b/c/g?y#s' -;x = 'http://a/b/c/d;x' -g;x = 'http://a/b/c/g;x' -g;x?y#s = 'http://a/b/c/g;x?y#s' -. = 'http://a/b/c/' -./ = 'http://a/b/c/' -.. = 'http://a/b/' -../ = 'http://a/b/' -../g = 'http://a/b/g' -../.. = 'http://a/' -../../ = 'http://a/' -../../g = 'http://a/g' - = 'http://a/b/c/d;p?q#f' -../../../g = 'http://a/../g' -../../../../g = 'http://a/../../g' -/./g = 'http://a/./g' -/../g = 'http://a/../g' -g. = 'http://a/b/c/g.' -.g = 'http://a/b/c/.g' -g.. = 'http://a/b/c/g..' -..g = 'http://a/b/c/..g' -./../g = 'http://a/b/g' -./g/. = 'http://a/b/c/g/' -g/./h = 'http://a/b/c/g/h' -g/../h = 'http://a/b/c/h' -0 errors |