mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Closes #9374: add back now-unused module attributes; removing them is a backward compatibility issue, since they have a public-seeming name.
This commit is contained in:
		
							parent
							
								
									638d40b433
								
							
						
					
					
						commit
						a61b09f406
					
				
					 1 changed files with 10 additions and 0 deletions
				
			
		|  | @ -48,6 +48,16 @@ | |||
|                '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' | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Georg Brandl
						Georg Brandl