[Python-checkins] CVS: python/dist/src/Lib/test/output test_urlparse,1.2,1.2.24.1

Michael Hudson mwh@users.sourceforge.net
Mon, 18 Mar 2002 05:03:42 -0800


Update of /cvsroot/python/python/dist/src/Lib/test/output
In directory usw-pr-cvs1:/tmp/cvs-serv14588/test/output

Modified Files:
      Tag: release22-maint
	test_urlparse 
Log Message:
amk's fix attached to 

[ 516299 ] urlparse can get fragments wrong



Index: test_urlparse
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_urlparse,v
retrieving revision 1.2
retrieving revision 1.2.24.1
diff -C2 -d -r1.2 -r1.2.24.1
*** test_urlparse	5 Jan 2001 05:57:04 -0000	1.2
--- test_urlparse	18 Mar 2002 13:03:40 -0000	1.2.24.1
***************
*** 1,3 ****
--- 1,8 ----
  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