mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			229 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			229 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import sys
 | |
| from warnings import warnpy3k
 | |
| 
 | |
| warnpy3k("the tkFileDialog module has been renamed "
 | |
|          "to 'tkinter.filedialog' in Python 3.0", stacklevel=2)
 | |
| 
 | |
| import tkinter.filedialog
 | |
| sys.modules[__name__] = tkinter.filedialog
 | 
