[Python-checkins] CVS: python/dist/src/Lib urlparse.py,1.24,1.25

Fred L. Drake python-dev@python.org
Tue, 20 Jun 2000 11:32:19 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv24155

Modified Files:
	urlparse.py 
Log Message:

Pekka Pessi <Pekka.Pessi@nokia.com>:
Patch to add support for sip: (Session Initiation Protocol, RFC2543)
URLs.


Index: urlparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/urlparse.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** urlparse.py	2000/04/14 14:01:34	1.24
--- urlparse.py	2000/06/20 18:32:16	1.25
***************
*** 18,29 ****
  	       'prospero', 'rtsp', 'rtspu', '']
  non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais',
! 		    'snews',
  		    ]
  uses_params = ['ftp', 'hdl', 'prospero', 'http',
! 	       'https', 'shttp', 'rtsp', 'rtspu',
  	       '']
  uses_query = ['http', 'wais',
  	      'https', 'shttp',
! 	      'gopher', 'rtsp', 'rtspu',
  	      '']
  uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',
--- 18,29 ----
  	       'prospero', 'rtsp', 'rtspu', '']
  non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais',
! 		    'snews', 'sip',
  		    ]
  uses_params = ['ftp', 'hdl', 'prospero', 'http',
! 	       'https', 'shttp', 'rtsp', 'rtspu', 'sip',
  	       '']
  uses_query = ['http', 'wais',
  	      'https', 'shttp',
! 	      'gopher', 'rtsp', 'rtspu', 'sip',
  	      '']
  uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',