]> granicus.if.org Git - python/commitdiff
Closes #9374: add back now-unused module attributes; removing them is a backward...
authorGeorg Brandl <georg@python.org>
Fri, 24 Aug 2012 16:15:29 +0000 (18:15 +0200)
committerGeorg Brandl <georg@python.org>
Fri, 24 Aug 2012 16:15:29 +0000 (18:15 +0200)
Lib/urllib/parse.py

index c8eddf2e0f6a331faf804c08bd11446e5bd67786..48117593e86bb923086470edb1f4212dd9e5146f 100644 (file)
@@ -48,6 +48,16 @@ uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap',
                'https', 'shttp', 'rtsp', 'rtspu', 'sip', 'sips',
                'mms', '', 'sftp']
 
+# These are not actually used anymore, but should stay for backwards
+# compatibility.  (They are undocumented, but have a public-looking name.)
+non_hierarchical = ['gopher', 'hdl', 'mailto', 'news',
+                    'telnet', 'wais', 'imap', 'snews', 'sip', 'sips']
+uses_query = ['http', 'wais', 'imap', 'https', 'shttp', 'mms',
+              'gopher', 'rtsp', 'rtspu', 'sip', 'sips', '']
+uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news',
+                 'nntp', 'wais', 'https', 'shttp', 'snews',
+                 'file', 'prospero', '']
+
 # Characters valid in scheme names
 scheme_chars = ('abcdefghijklmnopqrstuvwxyz'
                 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'