]> granicus.if.org Git - python/commitdiff
Pekka Pessi <Pekka.Pessi@nokia.com>:
authorFred Drake <fdrake@acm.org>
Tue, 20 Jun 2000 18:32:16 +0000 (18:32 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 20 Jun 2000 18:32:16 +0000 (18:32 +0000)
Patch to add support for sip: (Session Initiation Protocol, RFC2543)
URLs.

Lib/urlparse.py

index f4b45226b753e71a3374e02cea44b238ff2b32a5..929315e9630018183fb4ee3cadf6eff76af6b1c2 100644 (file)
@@ -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',