[Python-checkins] python/dist/src/Lib/test test_urlparse.py, 1.11, 1.12

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sun Oct 12 00:29:13 EDT 2003


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv31050/Lib/test

Modified Files:
	test_urlparse.py 
Log Message:
Misc/NEWS

Index: test_urlparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_urlparse.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** test_urlparse.py	6 Jan 2003 20:27:03 -0000	1.11
--- test_urlparse.py	12 Oct 2003 04:29:10 -0000	1.12
***************
*** 62,66 ****
          self.checkJoin(RFC1808_BASE, '/g', 'http://a/g')
          self.checkJoin(RFC1808_BASE, '//g', 'http://g')
-         self.checkJoin(RFC1808_BASE, '?y', 'http://a/b/c/d;p?y')
          self.checkJoin(RFC1808_BASE, 'g?y', 'http://a/b/c/g?y')
          self.checkJoin(RFC1808_BASE, 'g?y/./x', 'http://a/b/c/g?y/./x')
--- 62,65 ----
***************
*** 69,73 ****
          self.checkJoin(RFC1808_BASE, 'g#s/./x', 'http://a/b/c/g#s/./x')
          self.checkJoin(RFC1808_BASE, 'g?y#s', 'http://a/b/c/g?y#s')
-         self.checkJoin(RFC1808_BASE, ';x', 'http://a/b/c/d;x')
          self.checkJoin(RFC1808_BASE, 'g;x', 'http://a/b/c/g;x')
          self.checkJoin(RFC1808_BASE, 'g;x?y#s', 'http://a/b/c/g;x?y#s')
--- 68,71 ----
***************
*** 104,110 ****
          # cases from RFC 2396
  
!         ### urlparse.py as of v 1.32 fails on these two
!         #self.checkJoin(RFC2396_BASE, '?y', 'http://a/b/c/?y')
!         #self.checkJoin(RFC2396_BASE, ';x', 'http://a/b/c/;x')
  
          self.checkJoin(RFC2396_BASE, 'g:h', 'g:h')
--- 102,107 ----
          # cases from RFC 2396
  
!         self.checkJoin(RFC2396_BASE, '?y', 'http://a/b/c/?y')
!         self.checkJoin(RFC2396_BASE, ';x', 'http://a/b/c/;x')
  
          self.checkJoin(RFC2396_BASE, 'g:h', 'g:h')





More information about the Python-checkins mailing list