From bdd44a389bfbfa0960eaafcc246b10f98d060a99 Mon Sep 17 00:00:00 2001
From: Fred Drake <fdrake@acm.org>
Date: Tue, 20 Jun 2000 18:32:16 +0000
Subject: Pekka Pessi <Pekka.Pessi@nokia.com>: Patch to add support for sip:
 (Session Initiation Protocol, RFC2543) URLs.

---
 Lib/urlparse.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Lib/urlparse.py b/Lib/urlparse.py
index f4b4522..929315e 100644
--- a/Lib/urlparse.py
+++ b/Lib/urlparse.py
@@ -17,14 +17,14 @@ uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet', 'wais',
 	       'https', 'shttp', 'snews',
 	       'prospero', 'rtsp', 'rtspu', '']
 non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais',
-		    'snews',
+		    'snews', 'sip',
 		    ]
 uses_params = ['ftp', 'hdl', 'prospero', 'http',
-	       'https', 'shttp', 'rtsp', 'rtspu',
+	       'https', 'shttp', 'rtsp', 'rtspu', 'sip',
 	       '']
 uses_query = ['http', 'wais',
 	      'https', 'shttp',
-	      'gopher', 'rtsp', 'rtspu',
+	      'gopher', 'rtsp', 'rtspu', 'sip',
 	      '']
 uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',
 		 'https', 'shttp', 'snews',
-- 
cgit v0.12