git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9995 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			16 lines
		
	
	
		
			231 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			231 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import string
 | 
						|
 | 
						|
try:
 | 
						|
    del string
 | 
						|
    import locale
 | 
						|
    locale.setlocale(locale.LC_ALL,"")
 | 
						|
except:
 | 
						|
    pass    
 | 
						|
 | 
						|
import string
 | 
						|
 | 
						|
letters     = string.letters
 | 
						|
punctuations = string.punctuation 
 | 
						|
 | 
						|
lettpunc    = letters + punctuations
 |